mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 09:20:42 +00:00
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { registerOcPathCli } from "./cli-registration.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "oc-path",
|
|
name: "OC Path",
|
|
description: "Adds the openclaw path CLI for oc:// workspace file addressing.",
|
|
register(api) {
|
|
registerOcPathCli(api);
|
|
},
|
|
});
|