8 lines
86 B
Protocol Buffer
8 lines
86 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package test;
|
|
|
|
message Foo {
|
|
int32 optional_int32 = 1;
|
|
}
|