adapter-jellyfin: media provider
This commit is contained in:
13
crates/adapters/jellyfin/src/lib.rs
Normal file
13
crates/adapters/jellyfin/src/lib.rs
Normal file
@@ -0,0 +1,13 @@
|
||||
//! Jellyfin media provider adapter.
|
||||
//!
|
||||
//! Implements [`domain::ports::IMediaProvider`] by talking to the Jellyfin HTTP API.
|
||||
//! The domain never sees Jellyfin-specific types -- this module translates
|
||||
//! between Jellyfin's API model and the domain's abstract `MediaItem`/`MediaFilter`.
|
||||
|
||||
mod config;
|
||||
mod mapping;
|
||||
mod models;
|
||||
mod provider;
|
||||
|
||||
pub use config::JellyfinConfig;
|
||||
pub use provider::JellyfinMediaProvider;
|
||||
Reference in New Issue
Block a user