()
| 226 | } |
| 227 | |
| 228 | function getDevDataPath(): string { |
| 229 | const sPath = path.join(getContinueGlobalPath(), "dev_data"); |
| 230 | if (!fs.existsSync(sPath)) { |
| 231 | fs.mkdirSync(sPath); |
| 232 | } |
| 233 | return sPath; |
| 234 | } |
| 235 | |
| 236 | export function getDevDataSqlitePath(): string { |
| 237 | return path.join(getDevDataPath(), "devdata.sqlite"); |
no test coverage detected