Files
AWatch-rus/adk-rust/crates/aw-workforce-ingest/src/main.rs
T

11 lines
212 B
Rust

fn main() {
let code = match aw_workforce_ingest::run_from_args() {
Ok(()) => 0,
Err(err) => {
eprintln!("{err:#}");
1
}
};
std::process::exit(code);
}