kopuz-server 0.7.0

A modern, lightweight music player built with Rust and Dioxus.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Streaming server backends for Kopuz: Jellyfin, Subsonic/Navidrome,
//! YouTube Music, and the local download queue manager.

pub mod cover;
pub mod download_queue;
pub mod jellyfin;
pub mod provider;
pub mod server_ops;
pub mod soundcloud;
pub mod source;
pub mod subsonic;
pub mod sync;
pub mod ytmusic;

pub use download_queue::{DownloadItem, DownloadProgress, DownloadQueue, DownloadStatus};