Run on port 3030

This commit is contained in:
Daan Boerlage 2023-04-06 02:23:21 +02:00
parent 3a9c9a7ff8
commit dccd2ca20c
Signed by: daan
GPG key ID: FCE070E1E4956606

View file

@ -26,7 +26,7 @@ async fn main() {
println!("Starting...");
axum::Server::bind(&"0.0.0.0:3000".parse().unwrap())
axum::Server::bind(&"0.0.0.0:3030".parse().unwrap())
.serve(app.into_make_service())
.await
.unwrap();