()
| 38 | } |
| 39 | |
| 40 | export function getDefaultCacheFilePath(): string { |
| 41 | const paths = envPaths('mslearn', { suffix: '' }); |
| 42 | return join(paths.cache, 'learn-mcp-cache.json'); |
| 43 | } |
| 44 | |
| 45 | class FileLearnSessionCacheStore implements LearnSessionCacheStore { |
| 46 | private readonly cacheFilePath: string; |