Spaces:
Sleeping
Sleeping
| 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'; | |
| ({ | |
| imports: [TypeOrmModule.forFeature([SystemConfig])], | |
| controllers: [ConfigController], | |
| providers: [ConfigService], | |
| exports: [ConfigService], | |
| }) | |
| export class AppConfigModule {} | |