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
pub mod direct;
pub mod disk;
#[path = "google_drive.rs"]
pub mod google_drive;
pub mod openlist;
pub mod types;
pub mod webdav;

pub use direct::DirectLink;
pub use disk::Disk;
pub use google_drive::GoogleDriveConfig;
pub use openlist::OpenList;
pub use types::{Backend, BackendConfig, BackendNode};
pub use webdav::WebDavConfig;