diff options
| author | Jeff Carr <[email protected]> | 2024-11-27 21:40:06 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-27 21:40:06 -0600 |
| commit | ed3eacfe75e479e8c36cf7ba82a431c567f83602 (patch) | |
| tree | 450d0cc89758efd161c426868d6cbc6e4ef470d0 /repo.proto | |
| parent | 8b987962ea21a827d50e7f7430ab58b47274ad0e (diff) | |
first attempt that seems to kinda work on New()
Diffstat (limited to 'repo.proto')
| -rw-r--r-- | repo.proto | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -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 { |
