rtmp_rs/client/
mod.rs

1//! RTMP client implementation
2//!
3//! Provides client-side RTMP for:
4//! - Pulling streams from remote RTMP servers
5//! - Connecting to any RTMP server for transcoding, relaying, etc.
6
7pub mod config;
8pub mod connector;
9pub mod puller;
10
11pub use config::ClientConfig;
12pub use connector::RtmpConnector;
13pub use puller::{ClientEvent, RtmpPuller};