update code ngu
This commit is contained in:
13
src/Analytic/analytic.module.ts
Normal file
13
src/Analytic/analytic.module.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Module } from '@nestjs/common'
|
||||
import { AnalyticSchema } from './analytic.schema'
|
||||
import { ServiceSchema } from 'src/Service/service.schema'
|
||||
import { CenterSchema } from 'src/Center/center.schema'
|
||||
import { OrderSchema } from 'src/Order/order.schema'
|
||||
import { PayosModule } from 'src/Payos/payos.module'
|
||||
|
||||
@Module({
|
||||
imports: [PayosModule],
|
||||
providers: [AnalyticSchema, ServiceSchema, CenterSchema, OrderSchema],
|
||||
exports: [AnalyticSchema, ServiceSchema, CenterSchema, OrderSchema],
|
||||
})
|
||||
export class AnalyticModule {}
|
||||
Reference in New Issue
Block a user