commando 1.1.0

An interactive CLI tool to help you write conventional commit messages with ease.
1
2
3
4
5
pub trait StagingChecker {
    type Error;

    fn has_staged_changes(&self) -> Result<bool, Self::Error>;
}