mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
13 lines
390 B
TypeScript
13 lines
390 B
TypeScript
// OC Path module implements cli metadata behavior.
|
|
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);
|
|
},
|
|
});
|