blob: b01d09d9043d9352952ef6513ad1029b003051be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* HackChat main server entry point
* @author Marzavec ( https://github.com/marzavec )
* @version v2.0.0
* @license WTFPL ( http://www.wtfpl.net/txt/copying/ )
*/
// import and initialize the core application
import { CoreApp } from './src/serverLib/CoreApp';
const coreApp = new CoreApp();
coreApp.init();
|