1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Example of implementing own actions.
//!
//! Use this module to see how to extend
//! the `meio` with completely own types
//! of messages, but reusing existing
//! queues.

#![warn(missing_docs)]

pub mod custom_action;
pub mod extended_handler;