11 lines
193 B
Protocol Buffer
11 lines
193 B
Protocol Buffer
syntax = "proto2";
|
|
package example.msgs;
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
message ExampleDesc {
|
|
required int32 data = 1;
|
|
|
|
optional google.protobuf.FileDescriptorSet desc = 2;
|
|
}
|