aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/lib.rs
blob: d0966de3d861446dba4101ccdfef081932017475 (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
mod ambiguity_consumer;
mod arguments;
mod builder;
mod command;
mod command_dispatcher;
mod context;
mod exceptions;
mod immutable_string_reader;
mod literal_message;
mod message;
mod parse_results;
mod redirect_modifier;
mod result_consumer;
mod single_redirect_modifier;
mod string_reader;
mod suggestion;
mod tree;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}