summaryrefslogtreecommitdiff
path: root/package.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-01 18:18:11 -0600
committerJeff Carr <[email protected]>2024-12-01 18:18:11 -0600
commite4b150d6aae34ec3f4688c09711d0bfe2bcf4b41 (patch)
treec8283b4e2dc0a35e199343ef13f58abe77cb834f /package.proto
parenta4f3f951962b2db0bb21c22c10ef60d1d57a3b5c (diff)
switch to autogenpbv0.0.11
Diffstat (limited to 'package.proto')
-rw-r--r--package.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/package.proto b/package.proto
index 644b722..d56a957 100644
--- a/package.proto
+++ b/package.proto
@@ -6,7 +6,7 @@ package gitpb;
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
message Package {
- string name = 1; // name: zookeeper-go
+ string name = 1; // `autogenpb:unique` // 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)
@@ -14,7 +14,7 @@ message Package {
string pkgName = 6; // the apt filename pool/main/f/foo/foo_2.2.2_riscv64.deb
}
-message Packages {
+message Packages { // `autogenpb:marshal`
string uuid = 1; // I guess why not just have this on each file
string version = 2; // maybe can be used for protobuf schema change violations
repeated Package packages = 3;