azalea_brigadier/
modifier.rs1use std::sync::Arc;
2
3use crate::{context::CommandContext, exceptions::CommandSyntaxException};
4
5pub type RedirectModifier<S> =
6 dyn Fn(&CommandContext<S>) -> Result<Vec<Arc<S>>, CommandSyntaxException> + Send + Sync;