Files
openclaw/extensions/anthropic/index.ts
2026-04-04 15:20:28 +09:00

12 lines
359 B
TypeScript

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