add 'task modify' (that can only modify description right now)

This commit is contained in:
Dustin J. Mitchell
2020-11-28 11:17:38 -05:00
parent b34ef34b2a
commit a665ff83de
2 changed files with 67 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ mod add;
mod gc;
mod info;
mod list;
mod modify;
mod pending;
mod sync;
@@ -17,9 +18,10 @@ pub(crate) fn subcommands() -> Vec<Box<dyn SubCommand>> {
vec![
add::cmd(),
gc::cmd(),
list::cmd(),
pending::cmd(),
info::cmd(),
list::cmd(),
modify::cmd(),
pending::cmd(),
sync::cmd(),
]
}