todo-tree 1.0.0

A CLI tool to find and display TODO-style comments in your codebase
Documentation
1
2
3
4
5
6
7
8
9
10
//! `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"]
mod app;

fn main() -> color_eyre::eyre::Result<()> {
    app::run()
}