//! Queries — all reads (SELECTs) go through here.
//!
//! Functions take `&Db` so tests can pass a fresh in-memory database without
//! any global state. App code typically calls `storage::default_db().await`
//! once and reuses the result.
use Result;
use crateDb;
pub async