19 lines
544 B
TypeScript
19 lines
544 B
TypeScript
import type { MoltbotPluginApi } from "clawdbot/plugin-sdk";
|
|
import { emptyPluginConfigSchema } from "clawdbot/plugin-sdk";
|
|
|
|
import { mattermostPlugin } from "./src/channel.js";
|
|
import { setMattermostRuntime } from "./src/runtime.js";
|
|
|
|
const plugin = {
|
|
id: "mattermost",
|
|
name: "Mattermost",
|
|
description: "Mattermost channel plugin",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: MoltbotPluginApi) {
|
|
setMattermostRuntime(api.runtime);
|
|
api.registerChannel({ plugin: mattermostPlugin });
|
|
},
|
|
};
|
|
|
|
export default plugin;
|