summaryrefslogtreecommitdiff
path: root/repo.proto
diff options
context:
space:
mode:
Diffstat (limited to 'repo.proto')
-rw-r--r--repo.proto13
1 files changed, 8 insertions, 5 deletions
diff --git a/repo.proto b/repo.proto
index 03fbd6e..029bad2 100644
--- a/repo.proto
+++ b/repo.proto
@@ -11,12 +11,15 @@ import "google/protobuf/timestamp.proto"; // Import the well-known type for Time
message Repo {
string fullPath = 1; // the actual path to the .git directory: '/home/devel/golang.org/x/tools'
- string goPath = 2; // the logical path as used by golang: 'go.wit.com/apps/helloworld'
- bool library = 3; // if this is a golang library
- repeated Ref refs = 4;
- repeated GoDep GoDeps = 5;
- google.protobuf.Timestamp lastPull = 6; // last time a git pull was done
+ 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 {