Initial structure for drawer.

This commit is contained in:
Tom Alexander
2023-04-15 17:36:07 -04:00
parent ea74e329b2
commit 1f7c24545b
5 changed files with 30 additions and 0 deletions

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

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