aboutsummaryrefslogtreecommitdiffstats
path: root/server/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/main.js')
-rw-r--r--server/main.js13
1 files changed, 5 insertions, 8 deletions
diff --git a/server/main.js b/server/main.js
index 70042e8..b01d09d 100644
--- a/server/main.js
+++ b/server/main.js
@@ -1,15 +1,12 @@
/**
* HackChat main server entry point
- *
- * Version: v2.0.0
- * Developer: Marzavec ( https://github.com/marzavec )
- * License: WTFPL ( http://www.wtfpl.net/txt/copying/ )
- *
+ * @author Marzavec ( https://github.com/marzavec )
+ * @version v2.0.0
+ * @license WTFPL ( http://www.wtfpl.net/txt/copying/ )
*/
-'use strict';
-
// import and initialize the core application
-const CoreApp = require('./src/serverLib/CoreApp');
+import { CoreApp } from './src/serverLib/CoreApp';
+
const coreApp = new CoreApp();
coreApp.init();