kutil_cli/lib.rs
#![warn(missing_docs)]
/*!
Various Rust utilities for CLI programs.
Part of the Kutil family of Rust utility libraries.
The word "kutil" means "do-it-yourselfer" in Czech.
For more information and usage examples see the
[home page](https://github.com/tliron/rust-kutil).
*/
mod clap;
mod exit;
mod run;
mod tracing;
#[allow(unused_imports)]
pub use {clap::*, exit::*, run::*, tracing::*};