feat(CC-060): add ExportModule
This commit is contained in:
parent
eca3f4a48b
commit
1358b5d4dd
1 changed files with 5 additions and 0 deletions
5
src/export/export.module.ts
Normal file
5
src/export/export.module.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { ExportController } from './export.controller';
|
||||
|
||||
@Module({ controllers: [ExportController] })
|
||||
export class ExportModule {}
|
||||
Loading…
Reference in a new issue