webrtc_connection/lib.rs
1mod types;
2
3mod rtc_connection;
4pub use rtc_connection::RtcConnection;
5
6mod rtc_channel;
7pub use rtc_channel::RtcChannel;
8
9pub use webrtc::{peer_connection::configuration::RTCConfiguration, ice_transport::ice_server::RTCIceServer};
10
11#[cfg(any(feature = "test", test))]
12pub mod utils;
13
14// Next:
15// - implement `disconnect()` method