Skip to content
Snippets Groups Projects
Commit 27729f77 authored by L4168's avatar L4168
Browse files

added TrackingModule

parent fb6cceab
No related branches found
No related tags found
3 merge requests!59Development to master,!36Development,!32Game state
......@@ -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: [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment