2019-04-04 07:31:21 -05:00
|
|
|
// 1st party.
|
2019-04-14 16:33:26 -05:00
|
|
|
import {App} from './app';
|
|
|
|
// Application.
|
|
|
|
const app = new App();
|
2019-03-21 18:33:20 -05:00
|
|
|
// Create the socket connection.
|
2019-04-19 22:29:38 -05:00
|
|
|
app.connect();
|
2019-04-13 16:20:22 -05:00
|
|
|
// Just inject it into global for now.
|
2019-04-19 22:29:38 -05:00
|
|
|
window.humus = app;
|