1 2 3 4 5 6 7 8 9 10 11
#![cfg_attr(not(test), deny(clippy::unwrap_used, clippy::expect_used))] // SPDX-License-Identifier: AGPL-3.0-or-later //! Shared contracts for feature-flag governance. /// Feature flag definitions, lifecycle states, and governance builder. pub mod feature_flags; pub use feature_flags::{ Feature, FeatureCategory, FeatureFlags, FeatureFlagsBuilder, FeatureFlagsHandle, FeatureLifecycle, };