oak_sql/parser/
mod.rs

1use crate::SqlLanguage;
2
3/// JSON 解析
4pub struct SqlParser<'config> {
5    pub(crate) config: &'config SqlLanguage,
6}