mirror of
https://github.com/crystelf/crystelf-core.git
synced 2025-10-14 05:19:19 +00:00
12 lines
317 B
TypeScript
12 lines
317 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CdnController } from './cdn.controller';
|
|
import { CdnService } from './cdn.service';
|
|
import { PathModule } from '../../core/path/path.module';
|
|
|
|
@Module({
|
|
imports: [PathModule],
|
|
controllers: [CdnController],
|
|
providers: [CdnService],
|
|
})
|
|
export class CdnModule {}
|