clawless-cli 0.5.0

Generate and develop CLIs with Clawless
1
2
3
4
5
6
7
8
//! Input types and parsers for the CLI
//!
//! This module contains types used for parsing and validating command-line
//! input, such as command names with support for nested hierarchies.

pub use self::command_name::*;

mod command_name;