| 3 | import { ensureDirectoryExists } from './path-utils.js'; |
| 4 | |
| 5 | interface SessionData { |
| 6 | dashboardUrl: string; |
| 7 | startedAt: string; |
| 8 | pid: number; |
| 9 | } |
| 10 | |
| 11 | export class SessionManager { |
| 12 | private projectPath: string; |
nothing calls this directly
no outgoing calls
no test coverage detected