Files
empidee/src/lib.rs
T
oysteikt 02ba7f2684
Build and test / build (push) Successful in 1m4s
Build and test / check (push) Successful in 1m23s
Build and test / test (push) Successful in 1m52s
Build and test / docs (push) Successful in 1m16s
lib: fix doccomment url rendering
2025-12-08 16:27:55 +09:00

21 lines
494 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;