chase-rs/src/main.rs

8 lines
142 B
Rust
Raw Normal View History

2026-03-06 10:52:32 +00:00
use template_rust_project::cli::run;
fn main() {
if let Err(code) = run(std::env::args_os()) {
std::process::exit(code);
}
}