summaryrefslogtreecommitdiff
path: root/repos.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-29 16:22:19 -0600
committerJeff Carr <[email protected]>2024-11-29 16:22:19 -0600
commitbdcaba32f89cc635f39300aa213931c8eeffb909 (patch)
treebb4ed9ee2a7ba404d6a03dc48e7c7ddc62e7cdcf /repos.proto
parent3359a4499644a0e59a0dd0f1c2c74ae688f0190a (diff)
autogenpb marshal.pb.go and sort.pb.go
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'repos.proto')
-rw-r--r--repos.proto32
1 files changed, 0 insertions, 32 deletions
diff --git a/repos.proto b/repos.proto
deleted file mode 100644
index 9e02c08..0000000
--- a/repos.proto
+++ /dev/null
@@ -1,32 +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 "gitTags.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
-
- repeated GitTag gitTags = 10;
-}
-
-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;
-}