medea-jason 0.5.0

Client library for Medea media server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! External [`Jason`] API.

pub mod err;

#[cfg(not(target_family = "wasm"))]
pub mod dart;
#[cfg(not(target_family = "wasm"))]
pub use self::dart::*;

#[cfg(target_family = "wasm")]
mod wasm;
#[cfg(target_family = "wasm")]
pub use self::wasm::*;