Matteo Scandolo | f6acdbe | 2016-12-13 10:29:37 -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 = { | ||||
Matteo Scandolo | 035c593 | 2016-12-14 09:55:15 -0800 | [diff] [blame] | 9 | apiEndpoint: 'http://xos.dev:3000/api', |
10 | websocketClient: 'http://xos.dev:3000' | ||||
Matteo Scandolo | f6acdbe | 2016-12-13 10:29:37 -0800 | [diff] [blame] | 11 | }; |