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', | ||||
Matteo Scandolo | 40f8fa9 | 2016-12-07 09:21:35 -0800 | [diff] [blame] | 10 | websocketClient: 'http://xos.dev:3000' |
Matteo Scandolo | 43ffb67 | 2016-12-02 14:49:58 -0800 | [diff] [blame] | 11 | }; |