proxmox-backup/src/cli.rs

15 lines
231 B
Rust
Raw Normal View History

2019-02-21 08:07:25 +00:00
//! Tools to create command line parsers
//!
//! We can use Schema deinititions to create command line parsers.
//!
//!
mod environment;
pub use environment::*;
mod command;
pub use command::*;
mod getopts;
pub use getopts::*;