diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-12 09:03:56 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 |
commit | 14bc6f2cceed0fa578d6a1195266885bf57a5d4c (patch) | |
tree | 50988abce274aa5e4aa5905fb4bcc5c8cc4de652 /src/lib.rs | |
parent | ad6ac5f0a825775c231e76cdc9016e61e54f4141 (diff) |
chore: add BasicEmitter stub
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,7 @@ #![doc = concat!("[the LICENSE file]: ", file_url!("LICENSE"))] #![doc = include_str!("../README.md")] +mod basic_emitter; mod emitter; mod entities; mod error; @@ -25,6 +26,7 @@ pub mod offset; pub mod reader; pub mod token; +pub use basic_emitter::BasicEmitter; pub use emitter::Emitter; pub use error::Error; pub use naive_parser::NaiveParser; |