1 2 3 4 5 6
//! Shared pool alias for repository implementations. use sqlx::PgPool; use std::sync::Arc; pub type PgDbPool = Arc<PgPool>;