17 lines
368 B
Protocol Buffer
17 lines
368 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
// experiment to identify .pb files incase things go sideways
|
|
package forgepb;
|
|
|
|
// autogenpb:no-sort
|
|
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;
|
|
}
|