refactored todo file into todo module

This commit is contained in:
Andrei Stoica 2023-06-24 08:50:23 -04:00
parent 7a6ed10e23
commit 75d8b80dd7
3 changed files with 3 additions and 2 deletions

View File

@ -1,10 +1,9 @@
mod config;
mod todo;
mod todo_file;
use crate::config::Config;
use crate::todo::{Status as TaskStatus, TaskGroup};
use crate::todo_file::TodoFile;
use crate::todo::file::TodoFile;
use chrono::naive::NaiveDate;
use chrono::{Datelike, Local};
use comrak::nodes::{AstNode, NodeValue};

View File

@ -1,3 +1,5 @@
pub mod file;
use std::borrow::Borrow;
use comrak::nodes::AstNode;