/ crates / integration / src / lib.rs
lib.rs
 1  /// Integration with external systems
 2  ///
 3  /// Provides clients for AlphaOS, DeltaOS, and Adnet
 4  
 5  pub mod alphaos_client;
 6  pub mod deltaos_client;
 7  pub mod adnet_client;
 8  
 9  pub use alphaos_client::AlphaOSClient;
10  pub use deltaos_client::DeltaOSClient;
11  pub use adnet_client::AdnetClient;