Skip to main content

systemprompt_database/repository/
base.rs

1use sqlx::PgPool;
2use std::sync::Arc;
3
4pub type PgDbPool = Arc<PgPool>;