Matteo Scandolo | 43ffb67 | 2016-12-02 14:49:58 -0800 | [diff] [blame^] | 1 | /// <reference path="../../../typings/index.d.ts"/> |
2 | |||||
3 | export interface IAppConfig { | ||||
4 | apiEndpoint: string; | ||||
5 | websocketClient: string; | ||||
6 | } | ||||
7 | |||||
8 | export const AppConfig: IAppConfig = { | ||||
9 | apiEndpoint: 'http://xos.dev:3000/api', | ||||
10 | websocketClient: 'http://xos.dev:3000/socket.io/socket.io.js' | ||||
11 | }; |