integrations/rust/main.rs

8 lines
142 B
Rust
Raw Normal View History

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