mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
import Datasource from './datasource';
|
|
|
|
import LokiStartPage from './components/LokiStartPage';
|
|
import LokiQueryField from './components/LokiQueryField';
|
|
|
|
export class LokiConfigCtrl {
|
|
static templateUrl = 'partials/config.html';
|
|
}
|
|
|
|
export {
|
|
Datasource,
|
|
LokiConfigCtrl as ConfigCtrl,
|
|
LokiQueryField as ExploreQueryField,
|
|
LokiStartPage as ExploreStartPage,
|
|
};
|