blob: b296f9bfd75eedad2f7cb39c220cd73496b999bf [file] [log] [blame]
import {xosCore} from '../core/index';
import {xosCrud} from './crud/crud';
import {xosDashboard} from './dashboard/dashboard';
import {XosCrudRelationService} from './crud/crud.relations.service';
export const xosViews = 'xosViews';
angular
.module('xosViews', [xosCore])
.service('XosCrudRelation', XosCrudRelationService)
.component('xosCrud', xosCrud)
.component('xosDashboard', xosDashboard);