reifydb_sub_api/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
4#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
5#![cfg_attr(not(debug_assertions), deny(warnings))]
6#![allow(clippy::tabs_in_doc_comments)]
7
8//! Subsystem API crate providing common interfaces for ReifyDB subsystems
9//!
10//! This crate contains the core traits and types that all subsystems must implement
11//! and use to interact with the ReifyDB system.
12
13pub mod subsystem;