summaryrefslogtreecommitdiff
path: root/packages/cli/src/tools/read-file.tool.ts
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-17 17:25:01 -0400
committerTaylor Mullen <[email protected]>2025-04-17 17:25:01 -0400
commitd970882428a264d122b2f60fc91a4d72da912a93 (patch)
treef3eadc5ac3bd990e9986ab4afa4781ab8c1f1201 /packages/cli/src/tools/read-file.tool.ts
parentece8630c3327588f291a165599d44fade2c63425 (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/read-file.tool.ts')
-rw-r--r--packages/cli/src/tools/read-file.tool.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/tools/read-file.tool.ts b/packages/cli/src/tools/read-file.tool.ts
index 64d59df0..7cca3391 100644
--- a/packages/cli/src/tools/read-file.tool.ts
+++ b/packages/cli/src/tools/read-file.tool.ts
@@ -2,7 +2,7 @@ import fs from 'fs';
import path from 'path';
import { SchemaValidator } from '../utils/schemaValidator.js';
import { makeRelative, shortenPath } from '../utils/paths.js';
-import { BaseTool, ToolResult } from './tool.js';
+import { BaseTool, ToolResult } from './tools.js';
/**
* Parameters for the ReadFile tool