riva 1.0.0

Server-backed Rust client for the Riva proxy (YouTube and SoundCloud).
Documentation
1
2
3
4
5
6
7
8
9
mod client;
mod config;
mod error;

#[cfg(feature = "youtube")]
pub use client::YoutubeClientType;
pub use client::{HealthResponse, RivaClient};
pub use config::{DEFAULT_RIVA_BASE_URL, RivaConfig};
pub use error::{ApiErrorBody, RivaError};