mit_commit_message_lints/external/
mod.rs

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