9 lines
130 B
Protocol Buffer
9 lines
130 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package regression_414;
|
||
|
|
||
|
message Test {
|
||
|
bytes body = 1;
|
||
|
bytes auth = 2;
|
||
|
repeated bytes signatures = 3;
|
||
|
}
|