Minor bugfixes

This commit is contained in:
2026-05-02 10:23:25 +02:00
parent 12c618f8dd
commit d541cf18b1
3 changed files with 14 additions and 15 deletions

View File

@@ -57,5 +57,5 @@ async fn main() {
.layer(cors);
let listener = tokio::net::TcpListener::bind("0.0.0.0:8001").await.unwrap();
axum::serve(listener, app).await;
let _ = axum::serve(listener, app).await;
}