mirror of
https://github.com/starship/starship.git
synced 2025-02-23 05:41:44 +01:00
12 lines
187 B
Rust
12 lines
187 B
Rust
|
mod char;
|
||
|
|
||
|
use crate::Segment;
|
||
|
|
||
|
pub fn handle(module: &str) -> Segment {
|
||
|
match module {
|
||
|
"char" => char::segment(),
|
||
|
|
||
|
_ => panic!("Unknown module: {}", module),
|
||
|
}
|
||
|
}
|