mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-16 11:41:08 +00:00
17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelEntry({
|
|
id: "qa-channel",
|
|
name: "QA Channel",
|
|
description: "Synthetic QA channel plugin",
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./api.js",
|
|
exportName: "qaChannelPlugin",
|
|
},
|
|
runtime: {
|
|
specifier: "./runtime-api.js",
|
|
exportName: "setQaChannelRuntime",
|
|
},
|
|
});
|