1
2
3
4
5
6
7
8
9
//!
//! A tiny DSL for deciding what to do with an action
//!

mod dispatch;
mod event;

pub use dispatch::{Action, Dispatch, ParseError};
pub use event::Event;