| 9 | const DATA_DIR = ".mcp_data"; |
| 10 | |
| 11 | export interface RestorePoint { |
| 12 | id: string; |
| 13 | timestamp: number; |
| 14 | files: string[]; |
| 15 | message: string; |
| 16 | } |
| 17 | |
| 18 | function assertWithinRoot(rootDir: string, filePath: string): string { |
| 19 | const resolved = resolve(rootDir, filePath); |
nothing calls this directly
no outgoing calls
no test coverage detected