aboutsummaryrefslogtreecommitdiff
path: root/apps/servers/octopus/supergit/src/files.rs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/servers/octopus/supergit/src/files.rs')
-rw-r--r--apps/servers/octopus/supergit/src/files.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/servers/octopus/supergit/src/files.rs b/apps/servers/octopus/supergit/src/files.rs
new file mode 100644
index 000000000000..681b8877256f
--- /dev/null
+++ b/apps/servers/octopus/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,
+}