1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! A crate implementing the internal controlling protocol used between the microservices of the
//! TouHou.FM Radio project. When interacting with the various services, this library can be used
//! to abstract away the protocol details.

pub mod channels;
pub mod consumer;
mod decenc;
pub mod error;
pub mod message;
pub mod producer;