aboutsummaryrefslogtreecommitdiff
path: root/supergit/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'supergit/src/lib.rs')
-rw-r--r--supergit/src/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/supergit/src/lib.rs b/supergit/src/lib.rs
index 3e02d30..e209fac 100644
--- a/supergit/src/lib.rs
+++ b/supergit/src/lib.rs
@@ -7,6 +7,9 @@ pub use branch::{Branch, BranchCommit};
mod commit;
pub use commit::{CommitId, Commit};
+mod diff;
+pub use diff::Diff;
+
pub(crate) mod raw;
use std::sync::atomic::{AtomicUsize, Ordering};
@@ -25,7 +28,7 @@ impl Repository {
/// basically every time your program expects changes to have
/// happened. Polling this function is not recommended.
pub fn sync(&self) {
-
+ todo!()
}
}