summaryrefslogtreecommitdiff
path: root/uuid.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-09 21:15:52 -0600
committerJeff Carr <[email protected]>2025-01-09 21:15:52 -0600
commit40c340c6267aa53164804aad6ed988183fc42d3f (patch)
tree1ad29ea8e104520611b7f7876393645bbbc768af /uuid.proto
parentf9dd82cdcc6db632bfdecf2623e7e1486a37c6b3 (diff)
requires sortv0.0.45
Diffstat (limited to 'uuid.proto')
-rw-r--r--uuid.proto12
1 files changed, 9 insertions, 3 deletions
diff --git a/uuid.proto b/uuid.proto
index e58ca12..64e4dfe 100644
--- a/uuid.proto
+++ b/uuid.proto
@@ -4,7 +4,13 @@ syntax = "proto3";
package forgepb;
// autogenpb:no-sort
-message UuidConfigs { // `autogenpb:marshal`
- string uuid = 1; // could be useful for /usr/share/file/magic someday?
- string version = 2; // could be used for protobuf schema change violations?
+message Uuid { // `autogenpb:marshal`
+ string name = 1;
+}
+
+// autogenpb:no-sort
+message Uuids {
+ string uuid = 1; // `autogenpb:uuid`
+ string version = 2; // `autogenpb:version`
+ repeated Uuid Uuids = 3;
}