refactor: use 3311 as default port

This commit is contained in:
Gabor Körber 2024-02-07 13:38:58 +01:00
parent 2c088d03ce
commit 8924c06b86

View File

@ -45,7 +45,7 @@ async fn main() {
}; };
// Set the address to run our application on // 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 // Build our application with a route
let app = Router::new() let app = Router::new()