Parse file instead of command vec

This commit is contained in:
Joscha 2021-11-19 22:55:11 +01:00
parent e9cff194d3
commit a0781d574d
3 changed files with 14 additions and 7 deletions

View file

@ -237,3 +237,8 @@ pub enum Command {
Note(Note),
Birthday(Birthday),
}
#[derive(Debug)]
pub struct File {
pub commands: Vec<Command>,
}