diff options
Diffstat (limited to 'package.proto')
| -rw-r--r-- | package.proto | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package.proto b/package.proto index 53859a8..500db12 100644 --- a/package.proto +++ b/package.proto @@ -6,9 +6,11 @@ package gitpb; import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp message Package { - string name = 1; - string version = 2; - google.protobuf.Timestamp laststamp = 4; // the last time we heard anything from this droplet + string name = 1; // name: zookeeper-go + string version = 2; // version: 0.0.3 + google.protobuf.Timestamp laststamp = 3; // the last time this package was seen (used to timeout entries) + string srcPath = 4; // path to the sources (go.wit.com/apps/zookeeper) + bool installed = 5; // installed: true } message Packages { |
