Formatting

This commit is contained in:
Luca Palmieri 2023-09-21 08:24:47 +02:00
parent 344bde60fc
commit b2de856b3d

View file

@ -55,8 +55,7 @@ impl Application {
}
pub fn get_connection_pool(configuration: &DatabaseSettings) -> PgPool {
PgPoolOptions::new()
.connect_lazy_with(configuration.with_db())
PgPoolOptions::new().connect_lazy_with(configuration.with_db())
}
pub struct ApplicationBaseUrl(pub String);