chore: Clippy fixes

This commit is contained in:
Ginger
2026-04-13 17:31:52 -04:00
parent e185f56f3a
commit e70004c98f
53 changed files with 110 additions and 118 deletions
+1 -1
View File
@@ -163,7 +163,7 @@ fn cors_layer(_server: &Server) -> CorsLayer {
.allow_origin(cors::Any)
.allow_methods(METHODS)
.allow_headers(headers)
.max_age(Duration::from_secs(86400))
.max_age(Duration::from_hours(24))
}
fn body_limit_layer(server: &Server) -> DefaultBodyLimit {