azalea_brigadier/
lib.rs

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
#![doc = include_str!("../README.md")]

pub mod arguments;
pub mod builder;
pub mod command_dispatcher;
pub mod context;
pub mod exceptions;
pub mod modifier;
pub mod parse_results;
pub mod string_reader;
pub mod suggestion;
pub mod tree;

pub mod prelude {
    pub use crate::{
        arguments::{
            bool_argument_type::{bool, get_bool},
            double_argument_type::{double, get_double},
            float_argument_type::{float, get_float},
            integer_argument_type::{get_integer, integer},
            long_argument_type::{get_long, long},
            string_argument_type::{get_string, greedy_string, string, word},
        },
        builder::{literal_argument_builder::literal, required_argument_builder::argument},
        command_dispatcher::CommandDispatcher,
        context::CommandContext,
    };
}