| 1 | use SqlitePool; |
| 2 | use SqlitePoolOptions; |
| 3 | |
| 4 | /// Opens the SQLite pool. |
| 5 | /// |
| 6 | /// The pool is cheap to clone and shared by reference across every request, so it is |
| 7 | /// registered once as Topcoat app context rather than rebuilt per handler. |
| 8 | pub async |
| 9 | |
| 10 |