mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-08 15:51:06 +00:00
12 lines
359 B
TypeScript
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);
|
|
},
|
|
});
|