//! A generic WebTransport interface.
//!
//! The underlying implementation switches based on the platform:
//! - native: [web-transport-quinn](https://docs.rs/web-transport-quinn/latest)
//! - web: [web-transport-wasm](https://docs.rs/web-transport-wasm/latest)
//!
//! WASM lacks server support, so for native you first establish a [web_transport_quinn::Session] and then use [Session::from()] to cast to this generic interface.
pub use *;