diff --git a/src/main.rs b/src/main.rs index 43f61e6..87f57d8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,6 @@ use std::path::Path; use std::process::Command; use todo::{File as TodoFile, TaskGroup}; -// TODO: add options to use specific date instead of args.previous fn main() { // setup let args = Args::parse(); diff --git a/src/todo/mod.rs b/src/todo/mod.rs index 7534deb..fcd1155 100644 --- a/src/todo/mod.rs +++ b/src/todo/mod.rs @@ -2,4 +2,4 @@ mod file; mod tasks; pub use file::File; -pub use tasks::{Status, TaskGroup}; +pub use tasks::{Status, Task, TaskGroup};