Spaces:
Sleeping
Sleeping
File size: 455 Bytes
426f2a4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { ConfigController } from './config.controller';
import { ConfigService } from './config.service';
import { SystemConfig } from '../entities/system-config.entity';
@Module({
imports: [TypeOrmModule.forFeature([SystemConfig])],
controllers: [ConfigController],
providers: [ConfigService],
exports: [ConfigService],
})
export class AppConfigModule {}
|