1
2
3
4
5
6
7
8
9
pub use cli::{entrypoint, safe_exit};
pub use error::{Error, ErrorKind, Result};

mod args;
mod cli;
mod error;
mod finder;
mod matched_path;
mod starting_point;