1 2 3 4 5 6 7 8 9
//! Module exposing various types of rules, discriminated by prompt kinds. mod selected; mod then; mod written; pub use selected::*; pub use then::*; pub use written::*;