embystream 0.0.36

Another Emby streaming application (frontend/backend separation) written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! HTTP helpers: plugin hooks around a shared **reqwest** client (`provider`).
//!
//! Request execution uses rustls-backed reqwest; plugins are optional observers
//! (e.g. logging) and are not required for transport.

pub mod extension;
pub mod http_method;
pub mod plugin;
pub mod provider;
pub mod target;
pub mod task;

pub use extension::*;
pub use http_method::*;
pub use plugin::*;
pub use provider::*;
pub use target::*;
pub use task::*;