Files
taskwarrior-2.x/rust/cli/src/bin/ta.rs
2022-05-08 19:39:02 +00:00

12 lines
211 B
Rust

use std::process::exit;
pub fn main() {
match taskchampion_cli::main() {
Ok(_) => exit(0),
Err(e) => {
eprintln!("{:?}", e);
exit(e.exit_status());
}
}
}