kibana/x-pack/plugins/ingest_pipelines/server/index.ts
2020-05-05 07:04:31 -04:00

13 lines
495 B
TypeScript

/*
* 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 { PluginInitializerContext } from '../../../../src/core/server';
import { IngestPipelinesPlugin } from './plugin';
export function plugin(initializerContext: PluginInitializerContext) {
return new IngestPipelinesPlugin(initializerContext);
}