diff options
| author | Taylor Mullen <[email protected]> | 2025-04-17 17:25:01 -0400 |
|---|---|---|
| committer | Taylor Mullen <[email protected]> | 2025-04-17 17:25:01 -0400 |
| commit | d970882428a264d122b2f60fc91a4d72da912a93 (patch) | |
| tree | f3eadc5ac3bd990e9986ab4afa4781ab8c1f1201 /packages/cli/src/tools/tool-registry.ts | |
| parent | ece8630c3327588f291a165599d44fade2c63425 (diff) | |
Fix build break (tool -> tools).
- Without this we'd get a TS1261 about the name "tool" only differeing from "Tool" (the class) by case.
Diffstat (limited to 'packages/cli/src/tools/tool-registry.ts')
| -rw-r--r-- | packages/cli/src/tools/tool-registry.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/tools/tool-registry.ts b/packages/cli/src/tools/tool-registry.ts index d9f4504c..48030397 100644 --- a/packages/cli/src/tools/tool-registry.ts +++ b/packages/cli/src/tools/tool-registry.ts @@ -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(); |
