diff options
| author | mat <github@matdoes.dev> | 2022-04-18 18:13:15 +0000 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-18 18:13:15 +0000 |
| commit | b3864af9c4af83552e37fd71a46262967572f9e6 (patch) | |
| tree | 14938d1b278ad18efd86868094a73f6de85f09fa /azalea-brigadier/src/lib.rs | |
| parent | 17d9f676ccdc69743e7717bb91f7ff2999c065f8 (diff) | |
| download | azalea-drasl-b3864af9c4af83552e37fd71a46262967572f9e6.tar.xz | |
split stuff into more modules
Diffstat (limited to 'azalea-brigadier/src/lib.rs')
| -rw-r--r-- | azalea-brigadier/src/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/azalea-brigadier/src/lib.rs b/azalea-brigadier/src/lib.rs index e359e274..cffaac12 100644 --- a/azalea-brigadier/src/lib.rs +++ b/azalea-brigadier/src/lib.rs @@ -1,12 +1,11 @@ pub mod builder; +pub mod command_dispatcher; pub mod context; -pub mod dispatcher; pub mod exceptions; pub mod message; pub mod modifier; pub mod parse_results; pub mod parsers; -pub mod string_range; pub mod string_reader; pub mod tree; @@ -17,8 +16,8 @@ mod tests { use crate::{ builder::{literal_argument_builder::literal, required_argument_builder::argument}, + command_dispatcher::CommandDispatcher, context::CommandContext, - dispatcher::CommandDispatcher, parsers::{get_integer, integer}, }; |
