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;
7pub mod builder;
8pub mod highlighter;
9pub mod kind;
10pub mod language;
11pub mod lexer;
12pub mod lsp;
13pub mod mcp;
14pub mod parser;
15
16pub use crate::{ast::NginxRoot, builder::NginxBuilder, highlighter::NginxHighlighter, kind::NginxSyntaxKind, language::NginxLanguage, lexer::NginxLexer, lsp::NginxLanguageService, parser::NginxParser};
17
18pub use crate::mcp::serve_nginx_mcp;