mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
Refactor services
This commit is contained in:
parent
e410e317cc
commit
24bad56785
4 changed files with 3 additions and 3 deletions
|
|
@ -25,9 +25,9 @@ import { ClaudeAskResponse } from "../shared/WebviewMessage"
|
|||
import { findLast, findLastIndex, formatContentBlockToMarkdown } from "../utils"
|
||||
import { truncateHalfConversation } from "../utils/context-management"
|
||||
import { extractTextFromFile } from "../utils/extract-text"
|
||||
import { regexSearchFiles } from "../utils/ripgrep"
|
||||
import { regexSearchFiles } from "../services/ripgrep"
|
||||
import { parseMentions } from "../utils/context-mentions"
|
||||
import { UrlContentFetcher } from "../utils/UrlContentFetcher"
|
||||
import { UrlContentFetcher } from "../services/browser/UrlContentFetcher"
|
||||
import { diagnosticsToProblemsString, getNewDiagnostics } from "../utils/diagnostics"
|
||||
import { arePathsEqual } from "../utils/path-helpers"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import * as vscode from "vscode"
|
||||
import * as path from "path"
|
||||
import { openFile } from "./open-file"
|
||||
import { UrlContentFetcher } from "./UrlContentFetcher"
|
||||
import { UrlContentFetcher } from "../services/browser/UrlContentFetcher"
|
||||
import { mentionRegexGlobal } from "../shared/context-mentions"
|
||||
import fs from "fs/promises"
|
||||
import { extractTextFromFile } from "./extract-text"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue