2018-12-05 23:13:57 +01:00
|
|
|
import Datasource from './datasource';
|
|
|
|
|
|
|
|
|
|
import LokiStartPage from './components/LokiStartPage';
|
|
|
|
|
import LokiQueryField from './components/LokiQueryField';
|
2019-01-23 17:44:22 +01:00
|
|
|
import LokiQueryEditor from './components/LokiQueryEditor';
|
2018-12-05 23:13:57 +01:00
|
|
|
|
|
|
|
|
export class LokiConfigCtrl {
|
|
|
|
|
static templateUrl = 'partials/config.html';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
Datasource,
|
2019-01-23 17:44:22 +01:00
|
|
|
LokiQueryEditor as QueryEditor,
|
2018-12-05 23:13:57 +01:00
|
|
|
LokiConfigCtrl as ConfigCtrl,
|
|
|
|
|
LokiQueryField as ExploreQueryField,
|
|
|
|
|
LokiStartPage as ExploreStartPage,
|
|
|
|
|
};
|