mitrid_core 0.9.4

Core library of the Mitrid framework
1
2
3
4
5
6
7
8
9
10
11
12
//! # Command
//!
//! `command` is the module providing the types used to interact with Mitrid applications.

/// Type used to represent a command request.
pub mod request;

/// Type used to represent a command response.
pub mod response;

pub use self::request::Request;
pub use self::response::Response;