diff options
| author | Noritaka Kobayashi <[email protected]> | 2025-06-29 18:09:15 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-29 09:09:15 +0000 |
| commit | b980a47879076c030f642abc715a9f7ef6f39a35 (patch) | |
| tree | a73203ed9cd09fba5f5c549d9368f40b9ac19eae /packages/core/src/config/config.ts | |
| parent | e188daab91b98edb5ad5b3eca7d8b24fc945b7e3 (diff) | |
refactor: remove imported multiple times (#1846)
Diffstat (limited to 'packages/core/src/config/config.ts')
| -rw-r--r-- | packages/core/src/config/config.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index 75b73a85..59c9c1bd 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -21,10 +21,13 @@ import { ShellTool } from '../tools/shell.js'; import { WriteFileTool } from '../tools/write-file.js'; import { WebFetchTool } from '../tools/web-fetch.js'; import { ReadManyFilesTool } from '../tools/read-many-files.js'; -import { MemoryTool, setGeminiMdFilename } from '../tools/memoryTool.js'; +import { + MemoryTool, + setGeminiMdFilename, + GEMINI_CONFIG_DIR as GEMINI_DIR, +} from '../tools/memoryTool.js'; import { WebSearchTool } from '../tools/web-search.js'; import { GeminiClient } from '../core/client.js'; -import { GEMINI_CONFIG_DIR as GEMINI_DIR } from '../tools/memoryTool.js'; import { FileDiscoveryService } from '../services/fileDiscoveryService.js'; import { GitService } from '../services/gitService.js'; import { getProjectTempDir } from '../utils/paths.js'; |
