#![doc(html_favicon_url = "https://surrealdb.s3.amazonaws.com/favicon.png")]
#![doc(html_logo_url = "https://surrealdb.s3.amazonaws.com/icon.png")]
#[macro_use]
extern crate tracing;
#[macro_use]
mod mac;
mod cf;
mod doc;
mod exe;
mod fnc;
pub mod cnf;
pub mod ctx;
pub mod dbs;
pub mod env;
pub mod err;
pub mod fflags;
pub mod gql;
pub mod iam;
pub mod idg;
pub mod idx;
pub mod key;
pub mod kvs;
pub mod mem;
pub mod obs;
pub mod options;
pub mod rpc;
pub mod sql;
pub mod syn;
pub mod sys;
pub mod vs;
#[cfg(feature = "ml")]
pub use surrealml as ml;
pub mod channel {
pub use async_channel::bounded;
pub use async_channel::unbounded;
pub use async_channel::Receiver;
pub use async_channel::Sender;
}