reifydb_sub_api/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Subsystem trait surface: the contract every `sub-*` crate implements so the supervisor can start, stop and
5//! health-check them through one handle. Deliberately minimal, so a subsystem can hide its own architecture and
6//! still participate in lifecycle management.
7
8#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
9#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
10#![cfg_attr(not(debug_assertions), deny(warnings))]
11#![allow(clippy::tabs_in_doc_comments)]
12
13pub mod subsystem;