diff options
Diffstat (limited to 'uuid.proto')
| -rw-r--r-- | uuid.proto | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -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; } |
