This commit is contained in:
2026-03-02 17:46:35 +01:00
parent 1575ff81c1
commit 17e00610a7
8 changed files with 1996 additions and 64 deletions
+9
View File
@@ -0,0 +1,9 @@
use clap::Parser;
#[derive(Parser, Debug)]
#[command(version, about = "War in Tunnels", long_about = "War in Tunnels")]
pub struct Cli {}
pub fn get_args() -> Cli {
Cli::parse()
}