💕💕💕💕💕

This commit is contained in:
2024-10-12 17:26:43 +07:00
parent 4fac0a052b
commit ed694f4ab7
6 changed files with 142 additions and 0 deletions

View File

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