summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/js/index.js
blob: 7df77eddc5ea1541edebcb1c3a846faf343261e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Interface from './modules/interface';
import UIManager from './modules/ui/uiManager';
import Networker from './modules/networking/networker';

const SERVERURL = 'http://dsa-core:5000/chatHub';

let iface = new Interface();
let uiMan = new UIManager(iface);
uiMan.initLogin();

let netMan = new Networker(iface, SERVERURL, true); // TODO: Remove debug flag
netMan.initLogin();