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();