qail_core/lib.rs
1pub mod ast;
2pub mod error;
3pub mod validator;
4pub mod parser;
5pub mod transpiler;
6pub mod schema;
7pub mod fmt;
8pub mod migrate;
9pub mod analyzer;
10
11pub use parser::parse;
12
13pub mod prelude {
14 pub use crate::ast::*;
15 pub use crate::error::*;
16 pub use crate::parser::parse;
17 pub use crate::transpiler::ToSql;
18}