actrix_sdk/lib.rs
1//! Unified SDK facade for Actrix.
2//!
3//! This crate organizes exports into explicit layers:
4//! - `control`: stable control-plane API facade.
5//! - `testing`: internal integration-test oriented facade (feature-gated).
6
7pub mod control;
8#[cfg(feature = "testing")]
9pub mod testing;
10
11// Keep a simple default surface for runtime consumers.
12pub use control::*;