Fix return types of serve futures (#3601)

This commit is contained in:
Jonas Platte
2025-12-28 09:25:50 +01:00
committed by GitHub
parent 370c6df40a
commit f3a95d786a
66 changed files with 105 additions and 122 deletions
+1 -2
View File
@@ -48,8 +48,7 @@ async fn main() {
// Run the server with graceful shutdown
axum::serve(listener, app)
.with_graceful_shutdown(shutdown_signal())
.await
.unwrap();
.await;
}
async fn shutdown_signal() {