summaryrefslogtreecommitdiff
path: root/repository.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-15 17:25:11 -0600
committerJeff Carr <[email protected]>2024-11-15 17:25:11 -0600
commit5ef3669e7d35d6b281e2c4b5972fa9958c30f74c (patch)
tree1553423b3495b218e9bd5536f98e04bc0e9c0993 /repository.proto
parenteacbb1fb7af28656b269b8bdc287f67a88e4f233 (diff)
stub in sort function
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'repository.proto')
-rw-r--r--repository.proto29
1 files changed, 0 insertions, 29 deletions
diff --git a/repository.proto b/repository.proto
deleted file mode 100644
index c415075..0000000
--- a/repository.proto
+++ /dev/null
@@ -1,29 +0,0 @@
-syntax = "proto3";
-
-package gitpb;
-
-// import "google/protobuf/duration.proto"; // Import the well-known type for Timestamp
-import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
-
-message Commit {
- string id = 1;
- string message = 2;
- string author = 3;
- google.protobuf.Timestamp timestamp = 4; // the last time we heard anything from this droplet
-}
-
-message Tag {
- string name = 1;
- Commit commit = 2;
-}
-
-message Branch {
- string name = 1;
- Commit head = 2;
-}
-
-message Repository {
- string name = 1;
- repeated Branch branches = 2;
- repeated Tag tags = 3;
-}