This commit is contained in:
Andrei Stoica 2024-05-02 20:43:16 -04:00
parent 754ae271d7
commit 319cbbef4d
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ use std::path::Path;
use std::process::Command; use std::process::Command;
use todo::{File as TodoFile, TaskGroup}; use todo::{File as TodoFile, TaskGroup};
// TODO: add options to use specific date instead of args.previous
fn main() { fn main() {
// setup // setup
let args = Args::parse(); let args = Args::parse();

View File

@ -2,4 +2,4 @@ mod file;
mod tasks; mod tasks;
pub use file::File; pub use file::File;
pub use tasks::{Status, TaskGroup}; pub use tasks::{Status, Task, TaskGroup};