Parse tag blocks out of project and task note sections

This commit is contained in:
Campbell Alden 2023-07-24 11:02:14 +09:00
parent 469320a77f
commit 0144071046
6 changed files with 102 additions and 30 deletions

View file

@ -19,6 +19,7 @@ pub enum Status {
pub struct Project {
pub id: String,
pub title: String,
pub notes: Option<String>,
pub status: Status,
}