Skip to main content

oak_sql/
lib.rs

1#![feature(new_range_api)]
2#![doc = include_str!("readme.md")]
3#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
4#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
5
6pub mod ast;
7mod builder;
8pub mod highlighter;
9pub mod kind;
10pub mod language;
11pub mod lexer;
12pub mod parser;
13// pub mod syntax;
14
15mod formatter;
16pub mod lsp;
17pub mod mcp;
18
19// 重新导出主要类型
20pub use crate::{builder::SqlBuilder, formatter::SqlFormatter, highlighter::SqlHighlighter, kind::SqlSyntaxKind, language::SqlLanguage, lexer::SqlLexer, lsp::SqlLanguageService};