implement generic report generation

This commit is contained in:
Dustin J. Mitchell
2020-12-26 04:07:36 +00:00
parent f264e74288
commit 00f548c713
7 changed files with 484 additions and 50 deletions

View File

@@ -9,12 +9,14 @@ use termcolor::{ColorChoice, StandardStream};
mod cmd;
mod filter;
mod modify;
mod report;
#[cfg(test)]
mod test;
use filter::filtered_tasks;
use modify::apply_modification;
use report::display_report;
/// Invoke the given Command in the context of the given settings
#[allow(clippy::needless_return)]