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