1 2 3 4 5 6 7 8 9 10 11
// SPDX-License-Identifier: Apache-2.0 // Copyright (c) 2026 ReifyDB #![cfg(not(reifydb_single_threaded))] pub mod auth; pub(crate) mod common; pub mod grpc; pub mod meta; #[path = "common/proxy.rs"] pub(crate) mod proxy; pub mod ws;