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
mod error;
mod google;
mod source;
mod store;
mod token;

pub use error::TokenSourceError;
pub use google::GoogleDriveTokenSource;
pub use source::{TokenRequest, TokenSnapshot};
pub use token::OAuthToken;