embystream 0.0.36

Another Emby streaming application (frontend/backend separation) written in Rust.
Documentation
pub mod api;
pub mod app;
pub mod auth;
pub mod cache;
pub mod cli;
pub mod cli_lang;
pub mod cli_wizard;
pub mod client;
pub mod config;
pub mod core;
pub mod crypto;
pub mod defaults;
pub mod domain;
pub mod error;
pub mod gateway;
pub mod i18n;
pub mod log_stream;
pub mod logger;
pub mod macros;
pub mod network;
pub mod oauthutil;
pub mod system;
#[cfg(test)]
pub mod test_support;
pub mod util;
pub mod web;

pub use api::{EmbyAPI, OpenListAPI, PhotoMessage, TelegramAPI, TextMessage};
pub use app::*;
pub use cache::{FileMetadata, GeneralCache};
pub use client::GoogleDriveClient;
pub use client::{ClientBuilder, EmbyClient, OpenListClient, TelegramClient};
pub use core::*;
pub use crypto::*;
pub use domain::*;
pub use error::*;
pub use gateway::MiddlewareContext;
pub use network::*;
pub use system::*;
pub use util::*;