//! `tt` binary entry point: a short-name alias for `todo-tree`. Reuses
//! `todo-tree`'s `app` module via `#[path]` so the two binaries share one
//! implementation with no runtime indirection.
#[path="../todo-tree/app/mod.rs"]modapp;fnmain(){let result =app::run();ifletErr(report)=&result {eprintln!("{report:?}");}std::process::exit(app::exit_code_for(&result));}