blob: 64e4dfe95a9846b4e835bee02884da7cc536e266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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;
}
|