This commit is contained in:
2024-11-09 18:44:35 +07:00
parent 2736547b84
commit 95a092cec9
5 changed files with 61 additions and 4 deletions

View File

@@ -1,6 +1,9 @@
import { Module } from '@nestjs/common'
import { UserSchema } from './user.schema'
import { MessageModule } from '../Message/message.module'
@Module({
imports: [MessageModule],
providers: [UserSchema],
exports: [UserSchema],
})