blob: 70042e8a576e9dcdbdd4e475420baae16f50a474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* 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();
|