()
| 30 | let sharedOverlay: OverlayFs | null = null; |
| 31 | |
| 32 | function getSharedOverlay(): OverlayFs { |
| 33 | if (!sharedOverlay) { |
| 34 | sharedOverlay = new OverlayFs({ root: DATA_DIR, mountPoint: '/' }); |
| 35 | } |
| 36 | return sharedOverlay; |
| 37 | } |
| 38 | |
| 39 | // Custom sqlite3 command using better-sqlite3 (bypasses broken sql.js ESM bundling in just-bash) |
| 40 | function createSqlite3Command() { |
no outgoing calls
no test coverage detected