diff --git a/src/app.controller.ts b/src/app.controller.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cce879ee622146012901c9adb47ef40c0fd3a555
--- /dev/null
+++ b/src/app.controller.ts
@@ -0,0 +1,12 @@
+import { Controller, Get } from '@nestjs/common';
+import { AppService } from './app.service';
+
+@Controller()
+export class AppController {
+  constructor(private readonly appService: AppService) {}
+
+  @Get()
+  getHello(): string {
+    return this.appService.getHello();
+  }
+}
diff --git a/src/app.module.ts b/src/app.module.ts
index 71587003f36f6316a9d6b6b07d10bcf8d2c08c32..f591eb0f2c4e6b6de14f8f1d3de17aa73bcf4dff 100644
--- a/src/app.module.ts
+++ b/src/app.module.ts
@@ -9,12 +9,14 @@ import { HttpErrorFilter } from './shared/http-error.filter';
 import { LoggingInterceptor } from './shared/logging.interceptor';
 import { MapMarkerModule } from './mapmarkers/mapmarkers.module';
 import { NotificationModule } from './notifications/notifications.module';
+import { GameModule } from './game/game.module';
 
 @Module({
   imports: [
     TypeOrmModule.forRoot(),
     UserModule,
     MapMarkerModule,
+    GameModule,
     NotificationModule,
   ],
   controllers: [AppController],
diff --git a/src/user/user.entity.ts b/src/user/user.entity.ts
index 6c00a00c15d99ca9bccfad30826dd4eea13e6c82..a71b569dc1434482557dc9701d2a644749081895 100644
--- a/src/user/user.entity.ts
+++ b/src/user/user.entity.ts
@@ -1,8 +1,9 @@
 import { Entity, Column, PrimaryGeneratedColumn, BeforeInsert, OneToMany } from 'typeorm';
 import * as bcrypt from 'bcryptjs';
 import * as jwt from 'jsonwebtoken';
-import { MapMarkerEntity } from 'src/mapmarkers/mapmarker.entity';
-import { Game_PersonEntity } from 'src/game/game.entity';
+
+import { MapMarkerEntity } from '../mapmarkers/mapmarker.entity';
+import { Game_PersonEntity } from '../game/game.entity';
 
 @Entity('Person')
 export class PersonEntity {