* Use a parser (rather than clap) to process the command line * Outline some generic support for filtering, reporting, modifying, etc. * Break argument parsing strictly from invocation, to allow independent testing
14 lines
268 B
Rust
14 lines
268 B
Rust
//! Responsible for executing commands as parsed by [`crate::argparse`].
|
|
|
|
pub(crate) mod add;
|
|
pub(crate) mod gc;
|
|
pub(crate) mod help;
|
|
pub(crate) mod info;
|
|
pub(crate) mod list;
|
|
pub(crate) mod modify;
|
|
pub(crate) mod sync;
|
|
pub(crate) mod version;
|
|
|
|
#[cfg(test)]
|
|
mod test;
|