Starting to separate the context and parsed tokens into their own modules.

This commit is contained in:
Tom Alexander
2023-09-02 18:46:45 -04:00
parent 25b8c80d4e
commit b47029fdbb
8 changed files with 13 additions and 10 deletions

View File

@@ -15,5 +15,7 @@ pub use compare::get_emacs_version;
#[cfg(feature = "compare")]
pub use compare::get_org_mode_version;
mod context;
mod error;
pub mod parser;
mod types;