mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
13 lines
275 B
Protocol Buffer
13 lines
275 B
Protocol Buffer
option java_package = "org.springframework.protobuf.messaging";
|
|
option java_outer_classname = "OuterSample";
|
|
option java_multiple_files = true;
|
|
|
|
message Msg {
|
|
optional string foo = 1;
|
|
optional SecondMsg blah = 2;
|
|
}
|
|
|
|
message SecondMsg {
|
|
optional int32 blah = 1;
|
|
}
|