spotify_cli/rpc/mod.rs
1//! JSON-RPC daemon module
2//!
3//! Provides a daemon mode for spotify-cli that exposes JSON-RPC 2.0
4//! over Unix sockets, enabling control from editors and other applications.
5
6pub mod dispatch;
7pub mod events;
8pub mod protocol;
9pub mod server;
10
11pub use protocol::{RpcNotification, RpcRequest, RpcResponse};
12pub use server::{Server, ServerConfig};