spotify-cli 0.5.0

A command-line interface for Spotify
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! JSON-RPC daemon module
//!
//! Provides a daemon mode for spotify-cli that exposes JSON-RPC 2.0
//! over Unix sockets, enabling control from editors and other applications.

pub mod dispatch;
pub mod events;
pub mod protocol;
pub mod server;

pub use protocol::{RpcNotification, RpcRequest, RpcResponse};
pub use server::{Server, ServerConfig};