Skip to main content

web_wt_sys/
lib.rs

1//! Hand-crafted low-level Web API bindings for WebTransport.
2
3#![cfg(target_family = "wasm")]
4#![no_std]
5
6mod macros;
7mod streams;
8mod webtransport;
9
10pub use streams::*;
11pub use webtransport::*;