🔥🔥🔥🔥🔥🔥

This commit is contained in:
2024-10-12 17:11:09 +07:00
parent ba77bd4e1c
commit 4fac0a052b
13 changed files with 354 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
import { Global, Module } from '@nestjs/common';
import { ScheduleSchema } from './schedule.schema';
@Global()
@Module({
providers: [ScheduleSchema],
exports: [ScheduleSchema],
})
export class ScheduleModule {}