surrealpatch/lib/src/dbs/mod.rs

33 lines
870 B
Rust
Raw Normal View History

2023-06-19 18:44:40 +00:00
//! Datastore module which is the core of the database node.
//! In this module we essentially manage the entire lifecycle of a database request acting as the
//! glue between the API and the response. In this module we use channels as a transport layer
//! and executors to process the operations. This module also gives a `context` to the transaction.
mod distinct;
2021-03-29 15:43:37 +00:00
mod executor;
mod explanation;
2021-03-29 15:43:37 +00:00
mod iterator;
2023-06-20 22:50:26 +00:00
mod notification;
mod options;
2021-03-29 15:43:37 +00:00
mod response;
mod session;
mod statement;
mod transaction;
mod variables;
2020-06-29 15:36:01 +00:00
pub use self::notification::*;
pub use self::options::*;
pub use self::response::*;
pub use self::session::*;
pub(crate) use self::executor::*;
pub(crate) use self::iterator::*;
pub(crate) use self::statement::*;
pub(crate) use self::transaction::*;
pub(crate) use self::variables::*;
pub mod node;
2023-06-20 22:50:26 +00:00
mod processor;
#[cfg(test)]
pub(crate) mod test;