blob: 7b6fa1257f004315bf89cb43c77b1a52b33013fc [file] [log] [blame]
Matteo Scandolof6acdbe2016-12-13 10:29:37 -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.dev:3000/api',
10 websocketClient: 'http://xos.dev:3000'
11};