14 lines
527 B
TypeScript
14 lines
527 B
TypeScript
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 {}
|