1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![deny(unreachable_pub)]
mod error;
mod http_client;
pub mod media_container;
mod myplex;
mod player;
mod server;
pub mod url;
pub mod webhook;
pub use error::Error;
pub use http_client::{HttpClient, HttpClientBuilder};
pub use myplex::{
account::RestrictionProfile, device, pin::PinManager, sharing, MyPlex, MyPlexBuilder,
};
pub use player::Player;
pub use server::{library, prefs::Preferences, transcode, Server};
pub type Result<T = (), E = error::Error> = std::result::Result<T, E>;