Files
openclaw/extensions/clickclack/setup-entry.ts
T
2026-07-15 13:05:10 +01:00

11 lines
347 B
TypeScript

// ClickClack plugin module implements its setup-only bundled entry.
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
export default defineBundledChannelSetupEntry({
importMetaUrl: import.meta.url,
plugin: {
specifier: "./setup-plugin-api.js",
exportName: "clickClackSetupPlugin",
},
});