blob: 7d215af3d4359eb0bb37e0a4200f3695847e9da2 [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-test:3000/api',
Matteo Scandolo40f8fa92016-12-07 09:21:35 -080010 websocketClient: 'http://xos-test:3000'
Matteo Scandolo43ffb672016-12-02 14:49:58 -080011};