Commit 76ff78bc authored by nanahira's avatar nanahira

fix

parent 0a1a230b
Pipeline #4088 passed with stages
in 1 minute and 57 seconds
import { Module } from '@nestjs/common'; import { Module } from '@nestjs/common';
import { AppController } from './app.controller'; import { AppController } from './app.controller';
import { AppService } from './app.service'; import { AppService } from './app.service';
import { AppLogger } from './app.logger';
import { TypeOrmModule } from '@nestjs/typeorm'; import { TypeOrmModule } from '@nestjs/typeorm';
import { typeormConfig } from './config'; import { typeormConfig } from './config';
@Module({ @Module({
imports: [TypeOrmModule.forRoot(typeormConfig())], imports: [TypeOrmModule.forRoot(typeormConfig())],
controllers: [AppController], controllers: [AppController],
providers: [AppService, AppLogger], providers: [AppService],
}) })
export class AppModule {} 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