summaryrefslogtreecommitdiff
path: root/package.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-21 18:54:20 -0600
committerJeff Carr <[email protected]>2024-11-21 18:54:20 -0600
commit5581a4eb9c500b9fede39cb5b0202b53ba66fbc2 (patch)
tree33664f35fc40a2f7814e17e620ab7813a3de0f48 /package.proto
parent11e105ec931e2a190df33fac5de81636097a97f6 (diff)
add Installed bool in .proto
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'package.proto')
-rw-r--r--package.proto8
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 {