Headless Rust gRPC daemon to drive Bluetooth, HLS/DASH playback, and snapcast/shairport-sync/squeezelite on Raspberry Pi audio rigs.
0

Configure Feed

Select the types of activity you want to include in your feed.

zerod / crates / stream / src / sources / librespot_stub.rs
446 B 15 lines
1//! Non-Linux placeholder. librespot itself runs on macOS too, but the 2//! production target for zerod is Linux audio appliances — the stub 3//! keeps non-Linux dev builds compiling without pulling in a working 4//! librespot binary requirement. 5 6use super::LibrespotConfig; 7use anyhow::{bail, Result}; 8 9pub fn spotify_start(_cfg: LibrespotConfig) -> Result<()> { 10 bail!("librespot: linux only") 11} 12 13pub fn spotify_stop() -> bool { 14 false 15}