use std::sync::Arc; use ::client::Context; use ::model::Message; pub type Command = Fn(Context, Message, Vec) + Send + Sync; #[doc(hidden)] pub type InternalCommand = Arc;