blob: e58ca12b6eda54007867b422c5059d6b478e92d4 (
plain)
1
2
3
4
5
6
7
8
9
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?
}
|