meio_extra/
lib.rs

1//! Example of implementing own actions.
2//!
3//! Use this module to see how to extend
4//! the `meio` with completely own types
5//! of messages, but reusing existing
6//! queues.
7
8#![warn(missing_docs)]
9
10pub mod custom_action;
11pub mod extended_handler;