Spaces:
Sleeping
Sleeping
File size: 246 Bytes
57a889c | 1 2 3 4 5 6 7 8 9 | import { Module } from '@nestjs/common';
import { ConfigController } from './config.controller';
/** Public config domain (L2 leaf module). Registered in AppModule. */
@Module({
controllers: [ConfigController],
})
export class ConfigModule {}
|