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