From 9c03010bc345c8609c188a8aa9492ac4c12f0215 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 10 Oct 2025 16:25:42 -0400 Subject: [PATCH] Comment change --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 4a8ee2a..0a290b1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ async fn main() { let app = init::app().await; - // run our app with hyper, listening globally on port 3000 + // run our app with hyper, listening globally on port 8001 let url = config::get_full(); let listener = tokio::net::TcpListener::bind(url).await.unwrap(); axum::serve(listener, app).await.unwrap();