mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
27 lines
786 B
Rust
Executable file
27 lines
786 B
Rust
Executable file
#![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::{
|
|
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,
|
|
};
|
|
}
|