Skip to main content

reifydb_sub_api/
lib.rs

1// SPDX-License-Identifier: AGPL-3.0-or-later
2// Copyright (c) 2025 ReifyDB
3
4// #![cfg_attr(not(debug_assertions), deny(warnings))]
5
6//! Subsystem API crate providing common interfaces for ReifyDB subsystems
7//!
8//! This crate contains the core traits and types that all subsystems must implement
9//! and use to interact with the ReifyDB system.
10
11pub mod subsystem;