Extracted grouping by date to it's own subcommand. (#1792)

This commit is contained in:
Andrés N. Robalino
2020-05-15 04:16:09 -05:00
committed by GitHub
parent 5fbe5cf785
commit fc8ee8e4b9
6 changed files with 129 additions and 62 deletions

View File

@ -50,6 +50,7 @@ pub(crate) mod from_xml;
pub(crate) mod from_yaml;
pub(crate) mod get;
pub(crate) mod group_by;
pub(crate) mod group_by_date;
pub(crate) mod headers;
pub(crate) mod help;
pub(crate) mod histogram;
@ -178,6 +179,7 @@ pub(crate) use from_yaml::FromYAML;
pub(crate) use from_yaml::FromYML;
pub(crate) use get::Get;
pub(crate) use group_by::GroupBy;
pub(crate) use group_by_date::GroupByDate;
pub(crate) use headers::Headers;
pub(crate) use help::Help;
pub(crate) use histogram::Histogram;