course_web01 / backend /src /config /config.module.ts
trae-bot
Update project
426f2a4
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 {}