Changed port

This commit is contained in:
Jurn Wubben 2025-09-29 11:06:25 +02:00
parent e9d0580f7e
commit f726a374ca

View file

@ -25,7 +25,7 @@ async fn main() {
.route("/print", get(print))
.layer(Extension(printer));
let listener = tokio::net::TcpListener::bind("0.0.0.0:8000").await.unwrap();
let listener = tokio::net::TcpListener::bind("0.0.0.0:8080").await.unwrap();
axum::serve(listener, app).await.unwrap();
}