blob: d40d59f94f583f4a35df57f9b1dc511e2902112c (
plain)
1
2
3
4
5
6
|
use std::rc::Rc;
use crate::{context::CommandContext, exceptions::CommandSyntaxException};
pub type RedirectModifier<S> =
dyn Fn(&CommandContext<S>) -> Result<Vec<Rc<S>>, CommandSyntaxException>;
|