From 5ef3669e7d35d6b281e2c4b5972fa9958c30f74c Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 15 Nov 2024 17:25:11 -0600 Subject: stub in sort function Signed-off-by: Jeff Carr --- repository.proto | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 repository.proto (limited to 'repository.proto') 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; -} -- cgit v1.2.3