vox-rtc-server 0.1.4

Server-side Rust SDK for controlling Vox-hosted WebRTC sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod client;
mod error;
mod session;
mod socket;
mod types;

pub use client::{
    ControlledSession, SessionOptions, VoxRtcServerClient, VoxRtcServerClientOptions,
};
pub use error::{Result, VoxRtcError};
pub use session::{Listener, VoxRtcControlSession};
pub use types::*;