]> git.proxmox.com Git - proxmox-backup.git/blame - src/cli.rs
src/bin/proxmox-backup-client.rs: implement chunk-size completion
[proxmox-backup.git] / src / cli.rs
CommitLineData
4de0e142
DM
1//! Tools to create command line parsers
2//!
3//! We can use Schema deinititions to create command line parsers.
4//!
5//!
6
7mod environment;
8pub use environment::*;
9
532a69eb
DM
10mod getopts;
11pub use getopts::*;
12
4de0e142
DM
13mod command;
14pub use command::*;
15