aboutsummaryrefslogtreecommitdiff
path: root/mingling_pathf/src/patterns.rs
blob: 9801e9bdbc0c9b7353b88bc7a3941438e3f1fc78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Mingling path matching patterns for command routing and field mapping.

pub use basic_struct::*;
pub use chain::*;
pub use completion::*;
pub use dispatcher::*;
pub use dispatcher_clap::*;
pub use group::*;
pub use groupped_derive::*;
pub use help::*;
pub use pack::*;
pub use renderer::*;

mod basic_struct;
mod chain;
mod completion;
mod dispatcher;
mod dispatcher_clap;
mod group;
mod groupped_derive;
mod help;
mod pack;
mod renderer;