| 123456789101112131415 |
- import {GenericDatasource} from './datasource';
- import {GenericDatasourceQueryCtrl} from './query_ctrl';
- class GenericConfigCtrl {}
- GenericConfigCtrl.templateUrl = 'partials/config.html';
- class GenericQueryOptionsCtrl {}
- GenericQueryOptionsCtrl.templateUrl = 'partials/query.options.html';
- export {
- GenericDatasource as Datasource,
- GenericDatasourceQueryCtrl as QueryCtrl,
- GenericConfigCtrl as ConfigCtrl,
- GenericQueryOptionsCtrl as QueryOptionsCtrl
- };
|