1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/server/main.js
2019-03-18 23:36:21 -07:00

16 lines
348 B
JavaScript

/**
* HackChat main server entry point
*
* Version: v2.0.0
* Developer: Marzavec ( https://github.com/marzavec )
* License: WTFPL ( http://www.wtfpl.net/txt/copying/ )
*
*/
'use strict';
// import and initialize the core application
const CoreApp = require('./src/serverLib/CoreApp');
const coreApp = new CoreApp();
coreApp.init();