mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 01:31:08 +00:00
12 lines
368 B
TypeScript
12 lines
368 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { registerAmazonBedrockPlugin } from "./register.sync.runtime.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "amazon-bedrock",
|
|
name: "Amazon Bedrock Provider",
|
|
description: "Bundled Amazon Bedrock provider policy plugin",
|
|
register(api) {
|
|
registerAmazonBedrockPlugin(api);
|
|
},
|
|
});
|