Goby3  3.1.5a
2024.05.23
test.proto
Go to the documentation of this file.
1 syntax = "proto2";
2 import "dccl/option_extensions.proto";
3 import "goby/middleware/protobuf/app_config.proto";
4 import "goby/zeromq/protobuf/interprocess_config.proto";
5 
6 package goby.test.zeromq.protobuf;
7 
8 message TestConfig
9 {
10  optional goby.middleware.protobuf.AppConfig app = 1;
11  optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
12 }
13 
14 message Ready
15 {
16  optional bool b = 1;
17 }
18 
19 message Widget
20 {
21  optional int32 b = 1;
22 }