From 73891d56e55ad90275440a8d92316d0621836ca1 Mon Sep 17 00:00:00 2001 From: filipriec Date: Sat, 22 Feb 2025 15:11:14 +0100 Subject: [PATCH] main comment removed --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 141355a..be3e9f8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,7 +13,6 @@ async fn main() -> Result<(), Box> { match env::args().nth(1).as_deref() { Some("server") => server::run_server(db_pool).await?, - // Some("client") => client::run_client().await?, Some("client") => client::run_ui().await?, _ => println!("Usage: cargo run -- [server|client]"), }