From 8924c06b863467247410b058116add575e79ef8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabor=20K=C3=B6rber?= Date: Wed, 7 Feb 2024 13:38:58 +0100 Subject: [PATCH] refactor: use 3311 as default port --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d655607..9c012b0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,7 +45,7 @@ async fn main() { }; // Set the address to run our application on - let addr = SocketAddr::from(([0, 0, 0, 0], 3000)); + let addr = SocketAddr::from(([0, 0, 0, 0], 3311)); // Build our application with a route let app = Router::new()