Reorganize spec evaluation

This commit is contained in:
Joscha 2021-12-04 23:24:21 +01:00
parent 3a219ecac2
commit 2112272347
4 changed files with 32 additions and 23 deletions

View file

@ -0,0 +1,10 @@
use crate::files::commands::BirthdaySpec;
use super::super::command::CommandState;
use super::super::Result;
impl<'a> CommandState<'a> {
pub fn eval_birthday_spec(&mut self, spec: &BirthdaySpec) -> Result<()> {
todo!()
}
}