chase-rs/src/main.rs
2026-03-09 10:42:31 +01:00

8 lines
142 B
Rust

use template_rust_project::cli::run;
fn main() {
if let Err(code) = run(std::env::args_os()) {
std::process::exit(code);
}
}