mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-30 14:17:02 +00:00
cbd902658c
This is needed for the editor.
11 lines
251 B
Rust
11 lines
251 B
Rust
use std::ffi::OsStr;
|
|
|
|
pub use git2 as libgit;
|
|
pub use lazy_static::lazy_static;
|
|
|
|
pub mod diff;
|
|
|
|
lazy_static! {
|
|
pub static ref DOT_GIT: &'static OsStr = OsStr::new(".git");
|
|
pub static ref GITIGNORE: &'static OsStr = OsStr::new(".gitignore");
|
|
}
|