9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ChatroomSchema } from './chatroom.schema';
|
|
|
|
@Module({
|
|
providers: [ChatroomSchema],
|
|
exports: [ChatroomSchema],
|
|
})
|
|
export class ChatroomModule {}
|