thfmr_protocol/
lib.rs

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