mod mlr;
use crate::verdict::Verdict;
use crate::parse::Token;
pub(super) fn dispatch(cmd: &str, tokens: &[Token]) -> Option<Verdict> {
mlr::dispatch(cmd, tokens)
}
pub(super) fn command_docs() -> Vec<crate::docs::CommandDoc> {
mlr::command_docs()
}
#[cfg(test)]
pub(super) fn registry() -> Vec<&'static crate::handlers::CommandEntry> {
Vec::new()
}