Skip to content

Commit a33aa73

Browse files
committed
fmt: cargo fmt
1 parent 420a779 commit a33aa73

File tree

1 file changed

+4
-1
lines changed
  • atcoder-problems-backend/src/server

1 file changed

+4
-1
lines changed

atcoder-problems-backend/src/server/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ where
3030
HttpServer::new(move || {
3131
App::new()
3232
.app_data(web::Data::new(app_data.clone()))
33-
.wrap(actix_web::middleware::Logger::new(LOG_TEMPLATE).custom_request_replace("method", |req| req.method().to_string()))
33+
.wrap(
34+
actix_web::middleware::Logger::new(LOG_TEMPLATE)
35+
.custom_request_replace("method", |req| req.method().to_string()),
36+
)
3437
.configure(services::config_services::<A>)
3538
})
3639
.bind((host, port))?

0 commit comments

Comments
 (0)