safe-chains 0.112.0

Auto-allow safe, read-only bash commands in agentic coding tools
Documentation
use crate::command::FlatDef;
use crate::verdict::Verdict;
use crate::parse::Token;

pub(super) fn dispatch(_cmd: &str, _tokens: &[Token]) -> Option<Verdict> {
    None
}

pub(super) fn command_docs() -> Vec<crate::docs::CommandDoc> {
    Vec::new()
}

pub(super) fn all_flat_defs() -> Vec<&'static FlatDef> {
    Vec::new()
}

#[cfg(test)]
pub(super) fn registry() -> Vec<&'static crate::handlers::CommandEntry> {
    Vec::new()
}