From 27729f77136c7c26791de424f48fadedf37dde5e Mon Sep 17 00:00:00 2001 From: L4168 <L4168@student.jamk.fi> Date: Fri, 5 Jul 2019 09:12:51 +0300 Subject: [PATCH] added TrackingModule --- src/app.module.ts | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index 1d152d0..6bf82e3 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -5,16 +5,17 @@ import { Connection } from 'typeorm'; import { AppController } from './app.controller'; import { AppService } from './app.service'; -import { UserModule } from './user/user.module'; -import { HttpErrorFilter } from './shared/http-error.filter'; -import { LoggingInterceptor } from './shared/logging.interceptor'; -import { NotificationModule } from './notifications/notifications.module'; -import { GameModule } from './game/game.module'; -import { RolesGuard } from './shared/roles.guard'; -import { TaskModule } from './task/task.module'; import { DrawModule } from './draw/draw.module'; import { FactionModule } from './faction/faction.module'; +import { GameModule } from './game/game.module'; +import { NotificationModule } from './notifications/notifications.module'; +import { RolesGuard } from './shared/roles.guard'; +import { LoggingInterceptor } from './shared/logging.interceptor'; import { StatesGuard } from './shared/states.guard'; +import { HttpErrorFilter } from './shared/http-error.filter'; +import { TaskModule } from './task/task.module'; +import { TrackingModule } from './tracking/tracking.module'; +import { UserModule } from './user/user.module'; @Module({ imports: [ @@ -25,6 +26,7 @@ import { StatesGuard } from './shared/states.guard'; TaskModule, DrawModule, FactionModule, + TrackingModule, ], controllers: [AppController], providers: [ -- GitLab