1 2 3 4 5 6 7
use std::error::Error; use std::process::exit; use ttags::App; fn main() -> Result<(), Box<dyn Error>> { exit(App::run()?); }