From 5d28c6741ab043ae1deeca6bf4ff4c4d8ea4d455 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 29 Nov 2024 23:39:58 -0600 Subject: [PATCH] deprecated --- refs.proto | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 refs.proto 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 -}