mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
18 lines
463 B
TypeScript
18 lines
463 B
TypeScript
import Datasource from './datasource';
|
|
|
|
import LokiStartPage from './components/LokiStartPage';
|
|
import LokiQueryField from './components/LokiQueryField';
|
|
import LokiQueryEditor from './components/LokiQueryEditor';
|
|
|
|
export class LokiConfigCtrl {
|
|
static templateUrl = 'partials/config.html';
|
|
}
|
|
|
|
export {
|
|
Datasource,
|
|
LokiQueryEditor as QueryEditor,
|
|
LokiConfigCtrl as ConfigCtrl,
|
|
LokiQueryField as ExploreQueryField,
|
|
LokiStartPage as ExploreStartPage,
|
|
};
|