mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 17:31:35 +00:00
12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { POLICY_CLI_DESCRIPTOR } from "./src/cli-output-mode.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "policy",
|
|
name: "Policy",
|
|
description: "Policy CLI metadata",
|
|
register(api) {
|
|
api.registerCli(() => {}, { descriptors: [POLICY_CLI_DESCRIPTOR] });
|
|
},
|
|
});
|