use sqlx::PgPool; pub type DbPool = PgPool; pub async fn create_pool(database_url: &str) -> Result { PgPool::connect(database_url).await }