Skip to main content

systemprompt_database/repository/
base.rs

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