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 client_builder;
pub mod emby;
pub mod google_drive;
pub mod openlist;
pub mod telegram;

pub use client_builder::{BuildableClient, ClientBuilder};
pub use emby::Client as EmbyClient;
pub use emby::{
    PlaybackInfoRequest, PlaybackInfoService, PlaybackInfoServiceError,
};
pub use google_drive::Client as GoogleDriveClient;
pub use openlist::Client as OpenListClient;
pub use telegram::Client as TelegramClient;