mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-23 03:24:42 -07:00
Fix build break (tool -> tools).
- Without this we'd get a TS1261 about the name "tool" only differeing from "Tool" (the class) by case.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { ToolListUnion, FunctionDeclaration } from '@google/genai';
|
||||
import { Tool } from './tool.js';
|
||||
import { Tool } from './tools.js';
|
||||
|
||||
class ToolRegistry {
|
||||
private tools: Map<string, Tool> = new Map();
|
||||
|
||||
Reference in New Issue
Block a user