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
//! Adapters — concrete implementations of ports.
//!
//! All imports in this crate should go through these re-exports.
//! Nothing outside adapters/ should import adapter internals directly.
mod git;
pub mod ui;

pub use git::GitCommitExecutor;
pub use git::GitStagingChecker;
pub use ui::TerminalUI;