surrealdb/api/engine/remote/
mod.rs

1//! Protocols for communicating with the server
2
3#[cfg(feature = "protocol-http")]
4#[cfg_attr(docsrs, doc(cfg(feature = "protocol-http")))]
5pub mod http;
6
7#[cfg(feature = "protocol-ws")]
8#[cfg_attr(docsrs, doc(cfg(feature = "protocol-ws")))]
9pub mod ws;