Skip to main content

axum_postgres_tx/
pool.rs

1//! Pool type re-exports.
2//!
3//! This module re-exports the appropriate pool type based on the enabled feature.
4
5#[cfg(feature = "bb8")]
6pub use bb8_postgres::bb8::Pool;
7
8#[cfg(feature = "deadpool")]
9pub use deadpool_postgres::Pool;