Brian Silverman | cc09f18 | 2022-03-09 15:40:20 -0800 | [diff] [blame^] | 1 | syntax = "proto3"; |
2 | |||||
3 | option java_package = "org.pubref.rules_protobuf.examples"; | ||||
4 | option java_outer_classname = "CommonProto"; | ||||
5 | |||||
6 | package common; | ||||
7 | |||||
8 | // A configuration object. This is used to test the viability of | ||||
9 | // protobuf imports. | ||||
10 | message Config { | ||||
11 | bool verbose = 1; | ||||
12 | } | ||||
13 |