1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-27 20:59:02 +00:00
starship/src/modules/mod.rs

13 lines
233 B
Rust
Raw Normal View History

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),
}
}