mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -06:00
16 lines
480 B
TypeScript
16 lines
480 B
TypeScript
// Services
|
|
export { ValidationSrv } from './services/ValidationSrv';
|
|
|
|
// Components
|
|
export * from './components/MoveToFolderModal';
|
|
export * from './components/UploadDashboard';
|
|
|
|
// Controllers
|
|
import { DashboardListCtrl } from './DashboardListCtrl';
|
|
import { SnapshotListCtrl } from './SnapshotListCtrl';
|
|
|
|
import coreModule from 'app/core/core_module';
|
|
|
|
coreModule.controller('DashboardListCtrl', DashboardListCtrl);
|
|
coreModule.controller('SnapshotListCtrl', SnapshotListCtrl);
|