surrealdb/syn/
mod.rs

1//! Module containing the implementation of the surrealql tokens, lexer, and parser.
2
3pub mod common;
4pub mod error;
5
6pub mod v1;
7pub use v1::{
8	datetime, datetime_raw, duration, idiom, json, parse, path_like, range, subquery, thing,
9	thing_raw, value,
10};
11
12#[cfg(test)]
13pub mod test;