//! **Postgres** database and connection types.
pub use PgArguments;
pub use PgConnection;
pub use Postgres;
pub use PgError;
pub use PgRow;
pub use PgTypeInfo;
/// An alias for [`Pool`][crate::Pool], specialized for **Postgres**.
pub type PgPool = Pool;