medea 0.2.0

Medea media server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! [WebRTC] [signalling] related implementations.
//!
//! [WebRTC]: https://webrtcglossary.com/webrtc/
//! [signalling]: https://webrtcglossary.com/signaling/

pub mod elements;
pub mod participants;
pub mod peers;
pub mod room;
pub mod room_repo;
pub mod room_service;

#[doc(inline)]
pub use self::{
    room::Room, room_repo::RoomRepository, room_service::RoomService,
};