datachannel-facade 0.2.0

Facade for cross-platform WebRTC DataChannels
Documentation
1
2
3
4
5
6
7
8
9
cfg_if::cfg_if! {
    if #[cfg(target_arch = "wasm32")] {
        mod web;
        pub use web::*;
    } else {
        mod native;
        pub use native::*;
    }
}