8 lines
133 B
Rust
Raw Permalink Normal View History

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