11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
|
|
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 {}
|