pos-be/src/modules/reports/report/report.module.ts

11 lines
270 B
TypeScript

import { Module } from '@nestjs/common';
import { ReportController } from './report.controller';
import { ReportService } from './report.service';
@Module({
imports: [],
controllers: [ReportController],
providers: [ReportService],
})
export class ReportModule {}