Add the code structure for planning.

This commit is contained in:
Tom Alexander
2023-04-21 21:33:23 -04:00
parent 591d9c5e1f
commit 2ec1d4f855
5 changed files with 49 additions and 0 deletions

8
src/parser/planning.rs Normal file
View File

@@ -0,0 +1,8 @@
use super::Context;
use crate::error::Res;
use crate::parser::lesser_element::Planning;
#[tracing::instrument(ret, level = "debug")]
pub fn planning<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s str, Planning<'s>> {
todo!()
}