Introduce the document structure.

This commit is contained in:
Tom Alexander
2023-03-23 17:51:49 -04:00
parent 35d60c10ba
commit d98a11059c
11 changed files with 120 additions and 36 deletions

3
src/parser/source.rs Normal file
View File

@@ -0,0 +1,3 @@
pub trait Source<'s> {
fn get_source(&'s self) -> &'s str;
}