()
| 1864 | } |
| 1865 | |
| 1866 | export function recordFirstStartTime(): void { |
| 1867 | const config = getGlobalConfig() |
| 1868 | if (!config.firstStartTime) { |
| 1869 | const firstStartTime = new Date().toISOString() |
| 1870 | saveGlobalConfig(current => ({ |
| 1871 | ...current, |
| 1872 | firstStartTime: current.firstStartTime ?? firstStartTime, |
| 1873 | })) |
| 1874 | } |
| 1875 | } |
| 1876 | |
| 1877 | export function getMemoryPath(memoryType: MemoryType): string { |
| 1878 | const cwd = getOriginalCwd() |
no test coverage detected