| 69 | } |
| 70 | |
| 71 | interface SqliteConfig { |
| 72 | driver: 'sqlite'; |
| 73 | // :memory: for in-mem database |
| 74 | // empty string for tmp on-disk file db |
| 75 | path: string; |
| 76 | } |
| 77 | |
| 78 | async function createSqLitePool({ |
| 79 | path: filepath, |
nothing calls this directly
no outgoing calls
no test coverage detected