commando 1.1.0

An interactive CLI tool to help you write conventional commit messages with ease.
1
2
3
4
5
6
7
8
9
10
//! Git adapter implementations
//!
//! This module contains Git-based implementations of the ports.

mod error;
mod executor;
mod staging;

pub use executor::GitCommitExecutor;
pub use staging::GitStagingChecker;