phytrace_sdk/transport/mod.rs
1//! Transport layer for sending events to the PhyWare platform.
2//!
3//! Provides pluggable transport implementations with a common trait interface.
4
5#[cfg(feature = "http")]
6pub mod http;
7pub mod mock;
8pub mod traits;
9
10#[cfg(feature = "http")]
11pub use http::HttpTransport;
12pub use mock::MockTransport;
13pub use traits::Transport;