push code ne

This commit is contained in:
2024-10-28 01:08:13 +07:00
parent 571bb93e28
commit eec9fcfeff
20 changed files with 296 additions and 118 deletions

View File

@@ -0,0 +1,8 @@
import { AdminNoteSchema } from './adminnote.schema';
import { Module } from '@nestjs/common';
@Module({
providers: [AdminNoteSchema],
exports: [AdminNoteSchema],
})
export class AdminNoteModule {}