Remove io::Result from serve output type

This commit is contained in:
Jonas Platte
2025-04-26 22:56:40 +02:00
parent ffea2bcba5
commit a697d5badd
56 changed files with 69 additions and 88 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ mod unix {
.route("/", get(handler))
.into_make_service_with_connect_info::<UdsConnectInfo>();
axum::serve(uds, app).await.unwrap();
axum::serve(uds, app).await;
});
let stream = TokioIo::new(UnixStream::connect(path).await.unwrap());