#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
#![cfg_attr(not(debug_assertions), deny(warnings))]
#![allow(clippy::tabs_in_doc_comments)]
pub mod context;
#[cfg(not(reifydb_single_threaded))]
pub mod coordinator;
#[cfg(not(reifydb_single_threaded))]
pub mod factory;
#[cfg(not(reifydb_single_threaded))]
pub mod handle;
pub mod registry;
pub mod schedule;
#[cfg(not(reifydb_single_threaded))]
pub mod subsystem;
pub mod task;