blob: d28084bca4cae8d0a006b27d3d91aec580c4f38c [file] [log] [blame]
import {CoreRest} from './core.rest';
import {SlicesRest} from './slices.rest';
import {AuthService} from './auth.rest';
export const xosRest = 'xosRest';
angular
.module('xosRest', ['ngCookies'])
.service('CoreRest', CoreRest)
.service('SlicesRest', SlicesRest)
.service('AuthService', AuthService);