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

@@ -42,6 +42,7 @@ subcommand_invocation! {
}
t.add_row(row![b->"Description", task.get_description()]);
t.add_row(row![b->"Status", task.get_status()]);
t.add_row(row![b->"Active", task.is_active()]);
t.printstd();
Ok(())
}