Files
openclaw/extensions/twitch/index.ts
2026-06-04 21:02:07 -04:00

18 lines
489 B
TypeScript

// Twitch plugin entrypoint registers its OpenClaw integration.
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",
},
});