actrix-sdk 0.5.3

Unified public SDK facade for Actrix control-plane APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Unified SDK facade for Actrix.
//!
//! This crate organizes exports into explicit layers:
//! - `control`: stable control-plane API facade.
//! - `testing`: internal integration-test oriented facade (feature-gated).

pub mod control;
#[cfg(feature = "testing")]
pub mod testing;

// Keep a simple default surface for runtime consumers.
pub use control::*;