use sqlx::{Postgres, Pool}; use sqlx::postgres::PgPoolOptions; pub async fn connect() -> Pool { PgPoolOptions::new() .max_connections(8) .connect("postgres://ibihf2:ibihf@localhost/ibihf").await .unwrap() }