index.ts 285 B

1234567
  1. import coreModule from 'app/core/core_module';
  2. import { DashboardListCtrl } from './DashboardListCtrl';
  3. import { SnapshotListCtrl } from './SnapshotListCtrl';
  4. coreModule.controller('DashboardListCtrl', DashboardListCtrl);
  5. coreModule.controller('SnapshotListCtrl', SnapshotListCtrl);