yozefu_command/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! Structures and utility functions to build the command line interface of `yozefu`.
//! It relies on the [`clap`](https://crates.io/crates/clap) crate.

mod cli;
mod command;
mod headless;
mod log;
pub use clap::Parser;
pub use cli::Cli;
pub use tui::TuiError;

pub use app::APPLICATION_NAME;