Skip to main content

mit_commit_message_lints/external/
mod.rs

1//! Implementations of VCS we can interact with
2
3pub use self::{
4    commit_message_path::resolve_commit_message_path,
5    config::read_toml,
6    git2::Git2,
7    in_memory::InMemory,
8    vcs::{Error, RepoState, Vcs},
9};
10
11mod commit_message_path;
12mod config;
13mod git2;
14mod in_memory;
15mod vcs;