//! Defines the connection to the PostgreSQL database and the `SqlxPostGresDescriptor` for dependency injection.
//!
//! # Overview
//! - Establishes a connection pool for a PostgreSQL database using the `sqlx` library.
//! - Provides the `SqlxPostGresDescriptor` struct to serve as a handle for database-related operations.
//! - Configures the connection pool using environment variables for flexibility and scalability.
use ;
/// A descriptor struct used for applying database traits and dependency injection.
///
/// # Notes
/// This struct is intended to be used as a handle for implementing database-related traits
/// that define transactions or other interactions with the database.
;
/// A descriptor struct for yielding a live PostGres DB pool
;
define_pg_pool!;