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