From ce6060b0faaa3c1ef42ac066620d061d27c71e0c Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 18 Jan 2025 14:29:19 -0500 Subject: [PATCH] Change port --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e2ee1d5..15e4c96 100644 --- a/src/main.rs +++ b/src/main.rs @@ -309,7 +309,7 @@ async fn main() { .route("/polls/vote/{id}", post(vote_current_poll)) .with_state(initial_state.clone()); - let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); + let addr = SocketAddr::from(([127, 0, 0, 1], 9183)); tracing::info!("Listening on {}", addr); let listener = tokio::net::TcpListener::bind(&addr) .await