mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
|
///<reference path="../../headers/common.d.ts" />
|
||
|
|
||
|
import coreModule from 'app/core/core_module';
|
||
|
|
||
|
export class DashListCtrl {
|
||
|
/** @ngInject */
|
||
|
constructor() {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
coreModule.controller('DashListCtrl', DashListCtrl);
|