Fixing file name casing
This commit is contained in:
9
src/ChatRoom/chatroom.module.ts
Normal file
9
src/ChatRoom/chatroom.module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Global, Module } from '@nestjs/common';
|
||||
import { ChatroomSchema } from './chatroom.schema';
|
||||
|
||||
@Global()
|
||||
@Module({
|
||||
providers: [ChatroomSchema],
|
||||
exports: [ChatroomSchema],
|
||||
})
|
||||
export class ChatroomModule {}
|
||||
Reference in New Issue
Block a user