1//! Shared pool alias for repository implementations.
2//!
3//! Copyright (c) systemprompt.io — Business Source License 1.1.
4//! See <https://systemprompt.io> for licensing details.
56use sqlx::PgPool;
7use std::sync::Arc;
89pub type PgDbPool = Arc<PgPool>;