mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 05:56:08 +00:00
14 lines
405 B
TypeScript
14 lines
405 B
TypeScript
// Raft plugin entrypoint registers its OpenClaw integration.
|
|
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelEntry({
|
|
id: "raft",
|
|
name: "Raft",
|
|
description: "Raft CLI wake bridge channel plugin",
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./channel-plugin-api.js",
|
|
exportName: "raftPlugin",
|
|
},
|
|
});
|