Files
openclaw/extensions/twitch/index.ts
2026-03-16 23:52:23 -07:00

14 lines
411 B
TypeScript

import { defineChannelPluginEntry } from "openclaw/plugin-sdk/core";
import { twitchPlugin } from "./src/plugin.js";
import { setTwitchRuntime } from "./src/runtime.js";
export { monitorTwitchProvider } from "./src/monitor.js";
export default defineChannelPluginEntry({
id: "twitch",
name: "Twitch",
description: "Twitch chat channel plugin",
plugin: twitchPlugin,
setRuntime: setTwitchRuntime,
});