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

13 lines
322 B
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/**
* HackChat main server entry point
2019-11-07 15:35:23 +08:00
* @author Marzavec ( https://github.com/marzavec )
* @version v2.0.0
* @license WTFPL ( http://www.wtfpl.net/txt/copying/ )
2018-03-10 15:47:00 +08:00
*/
2019-03-19 14:36:21 +08:00
// import and initialize the core application
2019-11-07 15:35:23 +08:00
import { CoreApp } from './src/serverLib/CoreApp';
2019-03-19 14:36:21 +08:00
const coreApp = new CoreApp();
coreApp.init();