Skip to main content

nounsql_core/
lib.rs

1pub mod ast;
2pub mod codegen;
3pub mod config;
4pub mod diag;
5pub mod dialect;
6pub mod dict;
7pub mod highlight;
8pub mod ir;
9pub mod lexer;
10pub mod parser;
11pub mod resolve;
12pub mod span;
13pub mod template;
14
15pub use diag::{Diagnostic, Severity};
16pub use dialect::Dialect;
17pub use parser::parse;
18pub use resolve::resolve;