MCPcopy Index your code
hub / github.com/codeaashu/claude-code / getStoragePath

Function getStoragePath

src/utils/secureStorage/plainTextStorage.ts:13–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11import type { SecureStorage, SecureStorageData } from './types.js'
12
13function getStoragePath(): { storageDir: string; storagePath: string } {
14 const storageDir = getClaudeConfigHomeDir()
15 const storageFileName = '.credentials.json'
16 return { storageDir, storagePath: join(storageDir, storageFileName) }
17}
18
19export const plainTextStorage = {
20 name: 'plaintext',

Callers 4

readFunction · 0.85
readAsyncFunction · 0.85
updateFunction · 0.85
deleteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected