summaryrefslogtreecommitdiff
path: root/uuid.proto
diff options
context:
space:
mode:
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;
}