Files
moltbot/extensions/twitch/index.ts
2026-04-21 00:40:07 +01:00

17 lines
425 B
TypeScript

import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelEntry({
id: "twitch",
name: "Twitch",
description: "Twitch IRC chat channel plugin",
importMetaUrl: import.meta.url,
plugin: {
specifier: "./channel-plugin-api.js",
exportName: "twitchPlugin",
},
runtime: {
specifier: "./api.js",
exportName: "setTwitchRuntime",
},
});