aboutsummaryrefslogtreecommitdiff
path: root/supergit/src/files.rs
diff options
context:
space:
mode:
Diffstat (limited to 'supergit/src/files.rs')
-rw-r--r--supergit/src/files.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/supergit/src/files.rs b/supergit/src/files.rs
new file mode 100644
index 0000000..681b887
--- /dev/null
+++ b/supergit/src/files.rs
@@ -0,0 +1,7 @@
+
+pub type FileId = usize;
+
+/// A file to have ever existed in a git repo
+pub struct File {
+ id: FileId,
+}