Skip to main content

srs_client/
lib.rs

1//! SRS Client helps to
2//!
3//! Simplify to working process with [SRS] under Rust.
4//!
5//! [SRS]: https://ossrs.io
6mod callback_api;
7mod http_api;
8
9pub use crate::{
10    callback_api::{SrsCallbackEvent, SrsCallbackReq},
11    http_api::{
12        Audio, Client, Hls, Kbps, Publish, SrsClient, SrsClientError, SrsClientResp,
13        SrsClientRespData, Stream, Summary, Tests, Urls, Vhost, Video,
14    },
15};