blob: 2357f7718baffdb40a6e40e475b72c88306585ea [file] [log] [blame]
Matteo Scandolo43ffb672016-12-02 14:49:58 -08001/// <reference path="../../../typings/index.d.ts"/>
2
3export interface IAppConfig {
4 apiEndpoint: string;
5 websocketClient: string;
6}
7
8export const AppConfig: IAppConfig = {
9 apiEndpoint: 'http://xos-rest-gw:3000/api',
Matteo Scandolo40f8fa92016-12-07 09:21:35 -080010 websocketClient: 'http://xos-rest-gw:3000'
Matteo Scandolo43ffb672016-12-02 14:49:58 -080011};