summaryrefslogtreecommitdiff
path: root/refs.proto
diff options
context:
space:
mode:
Diffstat (limited to 'refs.proto')
-rw-r--r--refs.proto13
1 files changed, 0 insertions, 13 deletions
diff --git a/refs.proto b/refs.proto
deleted file mode 100644
index 38a3132..0000000
--- a/refs.proto
+++ /dev/null
@@ -1,13 +0,0 @@
-syntax = "proto3";
-
-package gitpb;
-
-import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
-
-message Ref {
- string hash = 1; // git objectname
- google.protobuf.Timestamp ctime = 2; // git creatordate
- string refName = 3; // git refname
- string author = 4; // git author
- string subject = 5; // git subject
-}