Local CLI task manager for LLM agents with cross-device syncing
1use std::process; 2 3fn main() { 4 if let Err(e) = yatd::run() { 5 let c = yatd::color::stderr_theme(); 6 eprintln!("{}error:{} {e}", c.red, c.reset); 7 process::exit(1); 8 } 9}