()
| 34 | } |
| 35 | |
| 36 | export function closeDb(): void { |
| 37 | if (!cached) return; |
| 38 | cached.sqlite.close(); |
| 39 | cached = null; |
| 40 | } |
| 41 | |
| 42 | // Module depth differs between dev (src/db/client.ts) and prod (bundled dist/index.js), |
| 43 | // so walk up from the running module to find the package's drizzle/ folder. |
no outgoing calls
no test coverage detected