()
| 24 | } |
| 25 | |
| 26 | function getStoragePath(): { storageDir: string; storagePath: string } { |
| 27 | const storageDir = getCanonicalNcodeConfigHomeDir() |
| 28 | const storageFileName = '.credentials.json' |
| 29 | return { storageDir, storagePath: join(storageDir, storageFileName) } |
| 30 | } |
| 31 | |
| 32 | export function getPrimaryPlainTextStoragePath(): string { |
| 33 | return getStoragePath().storagePath |
no outgoing calls
no test coverage detected