From ee1e448da83c2785f8234e5fe7418a0918325183 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me>
Date: Thu, 18 Jan 2024 14:07:24 +0100
Subject: [PATCH] App => Code improvement

---
 AssignmentChecker/src/app.ts | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/AssignmentChecker/src/app.ts b/AssignmentChecker/src/app.ts
index 0a94e4a..76dc2c8 100644
--- a/AssignmentChecker/src/app.ts
+++ b/AssignmentChecker/src/app.ts
@@ -18,13 +18,14 @@ import AssignmentValidator           from './sharedByClients/helpers/Dojo/Assign
 import Styles                        from './types/Style';
 import HttpManager                   from './managers/HttpManager';
 import Config                        from './config/Config';
-import Icon                          from './sharedByClients/types/Icon';
+import Icon                          from './shared/types/Icon';
+import { version }                   from './config/Version';
 
 
 (async () => {
     HttpManager.registerAxiosInterceptor();
 
-    console.log(Styles.APP_NAME(`${ Config.appName } (version {{VERSION}})`));
+    console.log(Styles.APP_NAME(`${ Config.appName } (version ${ version })`));
 
     const assignmentValidator = new AssignmentValidator(Config.folders.project);
 
-- 
GitLab