kindergarten/reading-platform-backend/src/modules/export/export.module.ts

11 lines
283 B
TypeScript
Raw Normal View History

import { Module } from '@nestjs/common';
import { ExportController } from './export.controller';
import { ExportService } from './export.service';
@Module({
controllers: [ExportController],
providers: [ExportService],
exports: [ExportService],
})
export class ExportModule {}