feat(CC-060): add ExportModule

This commit is contained in:
admin-valentin 2026-08-01 21:09:51 +00:00
parent eca3f4a48b
commit 1358b5d4dd

View file

@ -0,0 +1,5 @@
import { Module } from '@nestjs/common';
import { ExportController } from './export.controller';
@Module({ controllers: [ExportController] })
export class ExportModule {}