diff options
| author | Jeff Carr <[email protected]> | 2024-11-27 21:43:40 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-27 21:43:40 -0600 |
| commit | 9129cfe885281b0f2740d7f93dbb3b4ee5134d59 (patch) | |
| tree | 32272d3fb1b95cbe7ccd3a7063c95c327a144a96 /repo.proto | |
| parent | 1321787a3b4c92ee9c9ac5c21a0c511c1c2eaff5 (diff) | |
rename to plural form
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'repo.proto')
| -rw-r--r-- | repo.proto | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/repo.proto b/repo.proto deleted file mode 100644 index 029bad2..0000000 --- a/repo.proto +++ /dev/null @@ -1,29 +0,0 @@ -syntax = "proto3"; - -package gitpb; - -// stores information about git repos -// If the project is in golang, also gets the go language dependacies - -import "refs.proto"; -import "godep.proto"; -import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp - -message Repo { - string fullPath = 1; // the actual path to the .git directory: '/home/devel/golang.org/x/tools' - repeated Ref refs = 2; - google.protobuf.Timestamp lastPull = 3; // last time a git pull was done - - // things specific to golang projects - string goPath = 4; // the logical path as used by golang: 'go.wit.com/apps/helloworld' - repeated GoDep GoDeps = 6; - google.protobuf.Timestamp lastGoDep = 7; // last time go.sum was processed - bool goLibrary = 8; // if this is a golang library - bool goPrimitive = 9; // if this is a golang primitive -} - -message Repos { - string uuid = 1; // I guess why not just have this on each file - string version = 2; // maybe can be used for protobuf schema change violations - repeated Repo repos = 3; -} |
