//! Database connection pool. Postgres-only for v1 POC.
usesqlx::postgres::PgPoolOptions;pubtypePool=sqlx::PgPool;pub async fnconnect(url:&str, max_connections:u32)->Result<Pool, crate::Error>{let pool =PgPoolOptions::new().max_connections(max_connections).connect(url).await?;Ok(pool)}