mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 06:50:43 +00:00
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./channel-plugin-api.js",
|
|
exportName: "qaChannelPlugin",
|
|
},
|
|
runtime: {
|
|
specifier: "./api.js",
|
|
exportName: "setQaChannelRuntime",
|
|
},
|
|
});
|