(sessionId: string)
| 100 | } |
| 101 | |
| 102 | export function getSessionFilePath(sessionId: string): string { |
| 103 | return path.join(getSessionsFolderPath(), `${sessionId}.json`); |
| 104 | } |
| 105 | |
| 106 | export function getSessionsListPath(): string { |
| 107 | const filepath = path.join(getSessionsFolderPath(), "sessions.json"); |
no test coverage detected