git.rs

 1use std::ffi::OsStr;
 2
 3pub use git2 as libgit;
 4pub use lazy_static::lazy_static;
 5
 6pub mod diff;
 7pub mod repository;
 8
 9lazy_static! {
10    pub static ref DOT_GIT: &'static OsStr = OsStr::new(".git");
11    pub static ref GITIGNORE: &'static OsStr = OsStr::new(".gitignore");
12}