Files
openclaw/extensions/qa-channel/setup-entry.ts
2026-05-02 03:34:17 +01:00

14 lines
361 B
TypeScript

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",
},
});