kibana/x-pack/plugins/grokdebugger/public/index.js
Kerry Gallagher 558dd120a1
Grok debugger migration (#60658)
* Migrates Grok Debugger to new platform
2020-03-31 17:54:34 +01:00

11 lines
367 B
JavaScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { Plugin } from './plugin';
export function plugin(initializerContext) {
return new Plugin(initializerContext);
}