12 lines
319 B
Rust
12 lines
319 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 common;
|
||
|
mod request;
|
||
|
mod response;
|
||
|
|
||
|
pub use request::Request;
|
||
|
pub use response::Response;
|