Files
openclaw/extensions/anthropic/index.ts
2026-04-04 19:34:56 +01:00

12 lines
340 B
TypeScript

import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
import { registerAnthropicPlugin } from "./register.runtime.js";
export default definePluginEntry({
id: "anthropic",
name: "Anthropic Provider",
description: "Bundled Anthropic provider plugin",
register(api) {
return registerAnthropicPlugin(api);
},
});