mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 09:41:11 +00:00
12 lines
345 B
TypeScript
12 lines
345 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { buildGoogleGeminiCliBackend } from "./cli-backend.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "google",
|
|
name: "Google Setup",
|
|
description: "Lightweight Google setup hooks",
|
|
register(api) {
|
|
api.registerCliBackend(buildGoogleGeminiCliBackend());
|
|
},
|
|
});
|