mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
18 lines
489 B
TypeScript
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",
|
|
},
|
|
});
|