mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
11 lines
211 B
Rust
11 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());
|
|
}
|
|
}
|
|
}
|