reifydb_sub_api/lib.rs
1// Copyright (c) reifydb.com 2025
2// This file is licensed under the AGPL-3.0-or-later, see license.md file
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;
12
13pub use subsystem::{HealthStatus, Subsystem, SubsystemFactory};