Skip to main content

systemprompt_database/repository/
base.rs

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.
5
6use sqlx::PgPool;
7use std::sync::Arc;
8
9pub type PgDbPool = Arc<PgPool>;