aboutsummaryrefslogtreecommitdiff
path: root/supergit/src/raw/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'supergit/src/raw/mod.rs')
-rw-r--r--supergit/src/raw/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/supergit/src/raw/mod.rs b/supergit/src/raw/mod.rs
index b2f67a4..98602ca 100644
--- a/supergit/src/raw/mod.rs
+++ b/supergit/src/raw/mod.rs
@@ -1,5 +1,8 @@
//! Raw representation wrappers for libgit2
+mod branch_walk;
+mod tree_walk;
+
use git2::{self, Repository};
pub(crate) type RawResult<T> = Result<T, RawError>;