Commit 547efe3a authored by nanahira's avatar nanahira

fix

parent 1230700a
Pipeline #3217 passed with stages
in 1 minute and 15 seconds
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { AppLogger } from './app.logger';
import { TypeOrmModule } from '@nestjs/typeorm';
import { typeormConfig } from './config';
import { BotService } from './bot/bot.service';
import { BotLogger } from './bot/bot.logger';
import { BotController } from './bot/bot.controller';
@Module({
imports: [TypeOrmModule.forRoot(typeormConfig())],
controllers: [AppController, BotController],
providers: [AppService, AppLogger, BotService, BotLogger],
})
export class AppModule {}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment