Files
openclaw/extensions/raft/setup-entry.ts
2026-06-22 14:36:12 +08:00

11 lines
327 B
TypeScript

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