()
| 3 | import { getDesktopUserDataPath } from './user-data-path.ts' |
| 4 | |
| 5 | export function getChatSessionDir() { |
| 6 | const sessionDir = path.join(getDesktopUserDataPath(), '.howcode', 'chat-sessions') |
| 7 | mkdirSync(sessionDir, { recursive: true }) |
| 8 | return sessionDir |
| 9 | } |
no test coverage detected