From 319cbbef4d1961f92e5816a563410eb91f60d61e Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Thu, 2 May 2024 20:43:16 -0400 Subject: [PATCH] cleanup --- src/main.rs | 1 - src/todo/mod.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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};