()
| 96 | } |
| 97 | |
| 98 | export function getSharedConfigFilePath(): string { |
| 99 | return path.join(getContinueGlobalPath(), "sharedConfig.json"); |
| 100 | } |
| 101 | |
| 102 | export function getSessionFilePath(sessionId: string): string { |
| 103 | return path.join(getSessionsFolderPath(), `${sessionId}.json`); |
nothing calls this directly
no test coverage detected