From fddc4648a35282fd515b6734946bc4123926697e Mon Sep 17 00:00:00 2001 From: Ronnie Friman <L4168@student.jamk.fi> Date: Fri, 5 Jul 2019 19:39:44 +0300 Subject: [PATCH] added ScoreModule --- src/app.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app.module.ts b/src/app.module.ts index 2c2773b..f2c7b77 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -18,6 +18,7 @@ import { UserModule } from './user/user.module'; import { DrawModule } from './draw/draw.module'; import { FactionModule } from './faction/faction.module'; import { GameModule } from './game/game.module'; +import { ScoreModule } from './score/score.module'; @Module({ imports: [ @@ -29,6 +30,7 @@ import { GameModule } from './game/game.module'; DrawModule, FactionModule, TrackingModule, + ScoreModule, ], controllers: [AppController], providers: [ -- GitLab