Add start and stop commands

This commit is contained in:
Dustin J. Mitchell
2020-11-28 22:46:13 -05:00
parent 87596bb1f0
commit 0e4ab4b88f
9 changed files with 360 additions and 9 deletions

View File

@@ -6,22 +6,28 @@ mod macros;
mod shared;
mod add;
mod debug;
mod gc;
mod info;
mod list;
mod modify;
mod pending;
mod start;
mod stop;
mod sync;
/// Get a list of all subcommands in this crate
pub(crate) fn subcommands() -> Vec<Box<dyn SubCommand>> {
vec![
add::cmd(),
debug::cmd(),
gc::cmd(),
info::cmd(),
list::cmd(),
modify::cmd(),
pending::cmd(),
start::cmd(),
stop::cmd(),
sync::cmd(),
]
}