Skip to content

Commit 3f58ed1

Browse files
committed
chore: export the analysis module properly
1 parent b0a9750 commit 3f58ed1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This library provides a complete lexer and parser for EventQL (EQL), a query language
44
//! designed for event sourcing systems. It allows you to parse EQL query strings into
55
//! an abstract syntax tree (AST) that can be analyzed or executed.
6-
pub mod analysis;
6+
mod analysis;
77
mod ast;
88
mod error;
99
mod lexer;
@@ -22,6 +22,7 @@ use nom::Err;
2222
/// This module provides a single import point for all the library's public API,
2323
/// including AST types, error types, lexer, parser, and token types.
2424
pub mod prelude {
25+
pub use super::analysis::*;
2526
pub use super::ast::*;
2627
pub use super::error::*;
2728
pub use super::lexer::*;

0 commit comments

Comments
 (0)