empidee/src/lib.rs
2024-11-30 01:57:45 +01:00

16 lines
380 B
Rust

//! This library contains structs and parsing for the mpd protocol
//! as described in https://mpd.readthedocs.io/en/latest/protocol.html#protocol-overview
//!
//! It does not provide any client or server implementation
mod commands;
mod common;
mod filter;
mod request;
mod response;
mod server;
pub use request::Request;
pub use response::Response;
pub use server::MPDServer;