specify starting message

This commit is contained in:
csehviktor
2025-07-15 01:48:02 +02:00
parent 494c64bfb6
commit 9e9b619555

View File

@@ -26,7 +26,7 @@ impl Server {
let routes = http_routes.routes().with(cors).or(ws_routes.routes());
println!("starting websocket server on :{}", 3000);
println!("starting server on :{}", 3000);
warp::serve(routes).run(([0, 0, 0, 0], 3000)).await;
}
}