clingwrap/
lib.rs

1//! Utility types and functions for implementing command line
2//! applications in Rust.
3
4#![deny(missing_docs)]
5#![deny(clippy::unwrap_used)]
6
7pub mod config;
8pub mod runner;
9pub mod tildepathbuf;