kibana/x-pack/solutions/chat/plugins/serverless_chat/public/plugin.ts
Gerard Soldevila adb4bdf8d8
SKA: Extract list of Kibana solutions into a dedicated package (#213353)
## Summary

The intent is to have a centralised place to store the list of Kibana
solutions and serverless project types.
To that end, this PR creates a `@kbn/projects-solutions-groups` package.
It also adds the new solution type `'chat'`.

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2025-03-20 10:20:07 +01:00

43 lines
999 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
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import type { CoreSetup, CoreStart, Plugin } from '@kbn/core/public';
import type {
ChatServerlessPluginSetup,
ChatServerlessPluginStart,
ChatServerlessPluginSetupDeps,
ChatServerlessPluginStartDeps,
} from './types';
export class ChatServerlessPlugin
implements
Plugin<
ChatServerlessPluginSetup,
ChatServerlessPluginStart,
ChatServerlessPluginSetupDeps,
ChatServerlessPluginStartDeps
>
{
constructor() {}
public setup(
core: CoreSetup,
setupDeps: ChatServerlessPluginSetupDeps
): ChatServerlessPluginSetup {
return {};
}
public start(
core: CoreStart,
startDeps: ChatServerlessPluginStartDeps
): ChatServerlessPluginStart {
return {};
}
public stop() {}
}