mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
7 lines
345 B
TypeScript
7 lines
345 B
TypeScript
import { ExtensionContext } from "vscode"
|
|
import { getSettingsDirectoryPath } from "./storage"
|
|
|
|
export async function ensureSettingsDirectoryExists(context: ExtensionContext): Promise<string> {
|
|
// getSettingsDirectoryPath already handles the custom storage path setting
|
|
return await getSettingsDirectoryPath(context.globalStorageUri.fsPath)
|
|
}
|