Change port

This commit is contained in:
Joshua Goins 2025-01-18 14:29:19 -05:00
parent 7fa4094b83
commit ce6060b0fa

View file

@ -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