mirror of
https://fastgit.cc/github.com/openclaw/openclaw
synced 2026-05-01 06:36:23 +08:00
14 lines
474 B
TypeScript
14 lines
474 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { buildGoogleGeminiCliBackend } from "./cli-backend.js";
|
|
import { createGoogleVertexProvider } from "./provider-contract-api.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "google",
|
|
name: "Google Setup",
|
|
description: "Lightweight Google setup hooks",
|
|
register(api) {
|
|
api.registerProvider(createGoogleVertexProvider());
|
|
api.registerCliBackend(buildGoogleGeminiCliBackend());
|
|
},
|
|
});
|