21 lines
581 B
TypeScript
21 lines
581 B
TypeScript
import type { MoltbotPluginApi } from "clawdbot/plugin-sdk";
|
|
import { emptyPluginConfigSchema } from "clawdbot/plugin-sdk";
|
|
|
|
import { twitchPlugin } from "./src/plugin.js";
|
|
import { setTwitchRuntime } from "./src/runtime.js";
|
|
|
|
export { monitorTwitchProvider } from "./src/monitor.js";
|
|
|
|
const plugin = {
|
|
id: "twitch",
|
|
name: "Twitch",
|
|
description: "Twitch channel plugin",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: MoltbotPluginApi) {
|
|
setTwitchRuntime(api.runtime);
|
|
api.registerChannel({ plugin: twitchPlugin as any });
|
|
},
|
|
};
|
|
|
|
export default plugin;
|