mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 23:44:38 +00:00
6 lines
202 B
Rust
6 lines
202 B
Rust
use std::rc::Rc;
|
|
|
|
use crate::{context::CommandContext, exceptions::CommandSyntaxException};
|
|
|
|
pub type RedirectModifier<S> =
|
|
dyn Fn(&CommandContext<S>) -> Result<Vec<Rc<S>>, CommandSyntaxException>;
|