Files
openclaw/extensions/qa-channel/setup-entry.ts
2026-06-04 21:02:07 -04:00

15 lines
422 B
TypeScript

// Qa Channel plugin module implements setup entry behavior.
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelSetupEntry({
importMetaUrl: import.meta.url,
plugin: {
specifier: "./setup-plugin-api.js",
exportName: "qaChannelSetupPlugin",
},
runtime: {
specifier: "./api.js",
exportName: "setQaChannelRuntime",
},
});