Twitch: add setup entry sidecar

This commit is contained in:
Gustavo Madeira Santana
2026-04-17 02:59:35 -04:00
parent 729c7b8613
commit 25e4bf6c19
2 changed files with 4 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entr
export default defineBundledChannelSetupEntry({
importMetaUrl: import.meta.url,
plugin: {
specifier: "./src/setup-surface.js",
specifier: "./setup-plugin-api.js",
exportName: "twitchSetupPlugin",
},
});

View File

@@ -0,0 +1,3 @@
// Keep bundled setup entry imports narrow so setup loads do not pull the
// broader Twitch channel plugin surface.
export { twitchSetupPlugin } from "./src/setup-surface.js";