libpt_cli/
lib.rs

1//! This module bundles a lot of good CLI tools, and adds some of it's own, to make development of
2//! CLI apps easier and more ergonomic.
3#![warn(clippy::pedantic, clippy::style, clippy::nursery)]
4pub mod args;
5pub mod printing;
6pub mod repl;