Create structure for export snippets.

This commit is contained in:
Tom Alexander
2023-07-19 00:09:16 -04:00
parent eb03342506
commit 1fb8ce9af6
5 changed files with 56 additions and 0 deletions

View File

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