//! Centralized database type aliases.
//!
//! Re-exports PostgreSQL-specific types from [`sqlx`] under shorter names,
//! giving the rest of the crate a single place to reference them.
pub use PgConnection as Connection;
pub use PgPool as Pool;
pub use Postgres as Db;
pub use ;
/// Fetches the current timestamp from the database via `SELECT NOW()`.
pub async