diff options
| author | Jeff Carr <[email protected]> | 2025-01-09 21:15:52 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-09 21:15:52 -0600 |
| commit | 40c340c6267aa53164804aad6ed988183fc42d3f (patch) | |
| tree | 1ad29ea8e104520611b7f7876393645bbbc768af /uuid.proto | |
| parent | f9dd82cdcc6db632bfdecf2623e7e1486a37c6b3 (diff) | |
requires sortv0.0.45
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; } |
