2019-04-04 00:14:26 +00:00
|
|
|
mod char;
|
|
|
|
|
|
|
|
use crate::Segment;
|
2019-04-04 02:57:50 +00:00
|
|
|
use clap::ArgMatches;
|
2019-04-04 00:14:26 +00:00
|
|
|
|
2019-04-04 02:57:50 +00:00
|
|
|
pub fn handle(module: &str, args: &ArgMatches) -> Segment {
|
2019-04-04 00:14:26 +00:00
|
|
|
match module {
|
2019-04-04 02:57:50 +00:00
|
|
|
"char" => char::segment(&args),
|
2019-04-04 00:14:26 +00:00
|
|
|
|
|
|
|
_ => panic!("Unknown module: {}", module),
|
|
|
|
}
|
|
|
|
}
|