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 | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame^] | 9 | apiEndpoint: 'http://xos-rest-gw:3000/api', |
10 | websocketClient: 'http://xos-rest-gw:3000' | ||||
Matteo Scandolo | f6acdbe | 2016-12-13 10:29:37 -0800 | [diff] [blame] | 11 | }; |