diff options
Diffstat (limited to 'repository.proto')
| -rw-r--r-- | repository.proto | 29 |
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; -} |
