troi mua qua

This commit is contained in:
2024-10-07 20:46:20 +07:00
parent 30159e01ad
commit 5c836323b0
19 changed files with 411 additions and 2 deletions

View File

@@ -1,4 +1,9 @@
import { Module } from '@nestjs/common';
import { Global, Module } from '@nestjs/common';
import { ServiceSchema } from './service.schema';
@Module({})
@Global()
@Module({
providers: [ServiceSchema],
exports: [ServiceSchema],
})
export class ServiceModule {}