use std::sync::Arc; use crate::{context::CommandContext, errors::CommandSyntaxError}; pub type RedirectModifier = dyn Fn(&CommandContext) -> Result>, CommandSyntaxError> + Send + Sync;