mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
20 lines
505 B
TypeScript
20 lines
505 B
TypeScript
/**
|
|
* Bundled channel entry metadata for the ClickClack plugin.
|
|
*/
|
|
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelEntry({
|
|
id: "clickclack",
|
|
name: "ClickClack",
|
|
description: "ClickClack channel plugin",
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./channel-plugin-api.js",
|
|
exportName: "clickClackPlugin",
|
|
},
|
|
runtime: {
|
|
specifier: "./api.js",
|
|
exportName: "setClickClackRuntime",
|
|
},
|
|
});
|