Merge pull request #71 from djmitche/issue7

Add start and stop commands
This commit is contained in:
Dustin J. Mitchell
2020-11-28 23:19:21 -05:00
committed by GitHub
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(())
}