change control port to 14000

This commit is contained in:
Erik 2023-04-25 15:49:07 +02:00
parent b684c1dd76
commit 1069f46a40

View File

@ -27,7 +27,7 @@ async fn main() {
.with_state(shared_state);
// run our app with hyper
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
let addr = SocketAddr::from(([127, 0, 0, 1], 14000));
tracing::debug!("listening on {}", addr);
axum::Server::bind(&addr)
.serve(app.into_make_service())