()
| 62 | * Get the session file path for the current session |
| 63 | */ |
| 64 | export function getSessionFilePath(): string { |
| 65 | const sessionId = getCurrentSessionId(); |
| 66 | const sessionDir = getSessionDir(); |
| 67 | return path.join(sessionDir, `${sessionId}.json`); |
| 68 | } |
| 69 | |
| 70 | // Singleton for current session management |
| 71 | class SessionManager { |
no test coverage detected