stremio-addon-core 0.1.2

Reusable Rust core for authenticated Stremio addon servers
Documentation
pub mod auth;
pub mod cards;
pub mod config;
pub mod metadata;
pub mod models;
pub mod ranking;
pub mod router;
pub mod search;
pub mod signing;

pub use auth::{AuthConfig, AuthError};
pub use cards::*;
pub use config::{decode_config_segment, UserConfig};
pub use metadata::*;
pub use models::*;
pub use ranking::*;
pub use router::{
    build_router, build_router_with_options, AddonAdapter, AddonContext, AddonError,
    PlaybackResponse, RouterOptions,
};
pub use search::*;
pub use signing::{SignedPlayback, SigningError};