mirror of
https://github.com/hack-chat/main.git
synced 2024-03-22 13:20:33 +08:00
13 lines
322 B
JavaScript
13 lines
322 B
JavaScript
/**
|
|
* 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();
|