Headless Rust gRPC daemon to drive Bluetooth, HLS/DASH playback, and snapcast/shairport-sync/squeezelite on Raspberry Pi audio rigs.
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}