diff options
| author | Jeff Carr <[email protected]> | 2024-12-04 15:36:49 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-04 15:36:49 -0600 |
| commit | f98179971e574de202c582576e59a8e3da68530f (patch) | |
| tree | d7ae78b10ea961722015a658e82cb13dbe92ad2d /uuid.proto | |
| parent | 4d221c522035e05947b136385e23b78eccc9c578 (diff) | |
this .proto might allow generic marshal recovery
Diffstat (limited to 'uuid.proto')
| -rw-r--r-- | uuid.proto | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/uuid.proto b/uuid.proto new file mode 100644 index 0000000..e58ca12 --- /dev/null +++ b/uuid.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; + +// experiment to identify .pb files incase things go sideways +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? +} |
