summaryrefslogtreecommitdiffstats
path: root/src/modules/mod.rs
blob: ffa21a81fffea64ecc964d65c9ece730353ad8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
mod battery;
mod character;
mod directory;
mod git_branch;
mod git_status;
mod golang;
mod line_break;
mod nodejs;
mod package;
mod python;
mod rust;
mod username;

use crate::context::Context;
use crate::module::Module;

pub fn handle<'a>(module: &str, context: &'a Context) -> Option<Module<'a>> {
    match module {
        "dir" | "directory" => directory::module(context),
        "char" | "character" => character::module(context),
        "node" | "nodejs" => nodejs::module(context),
        "rust" | "rustlang" => rust::module(context),
        "python" => python::module(context),
        "go" | "golang" => golang::module(context),
        "line_break" => line_break::module(context),
        "package" => package::module(context),
        "git_branch" => git_branch::module(context),
        "git_status" => git_status::module(context),
        "username" => username::module(context),
        "battery" => battery::module(context),

        _ => panic!("Unknown module: {}", module),
    }
}