fix: import log after index in server entrypoint

This commit is contained in:
Alex Mikhalev 2018-09-03 01:21:46 -06:00
parent fce64f3850
commit e415023a72

View File

@ -1,9 +1,10 @@
import * as http from "http";
import * as WebSocket from "ws";
import log from "@common/logger";
import { createApp, ServerState, WebSocketApi } from "../";
import log from "@common/logger";
const state = new ServerState();
const app = createApp(state);
const webSocketApi = new WebSocketApi(state);