import { Module } from '@nestjs/common'; import { GameConfigController } from './game-config.controller'; import { GameConfigService } from './game-config.service'; import { WechatGameModule } from '../wechat-game/wechat-game.module'; @Module({ imports: [WechatGameModule], controllers: [GameConfigController], providers: [GameConfigService], }) export class GameConfigModule {}