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