1 2 3 4 5 6 7
/// Methods and data-structures for handling [Action]s. pub mod interface; /// Methods for parsing [Action]s, and related data-structures. pub mod parse; pub use interface::ActionResult; pub use parse::{Action, Error, Verb};