Files
empidee/src/lib.rs
h7x4 d964e7857b
Some checks failed
Build and test / docs (push) Has been cancelled
Build and test / test (push) Has been cancelled
Build and test / build (push) Has been cancelled
Build and test / check (push) Has been cancelled
examples/mpd-client: add some code
2025-12-08 13:00:46 +09:00

21 lines
492 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 client;
mod commands;
mod request;
mod request_tokenizer;
mod response;
mod response_tokenizer;
mod server;
pub mod filter;
pub mod types;
pub use client::{MpdClient, MpdClientError};
pub use request::Request;
pub use response::Response;
pub use server::MpdServer;