mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-23 16:01:17 +00:00
14 lines
411 B
TypeScript
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,
|
|
});
|