From 5581a4eb9c500b9fede39cb5b0202b53ba66fbc2 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 21 Nov 2024 18:54:20 -0600 Subject: add Installed bool in .proto Signed-off-by: Jeff Carr --- package.proto | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'package.proto') 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 { -- cgit v1.2.3