xref: /aosp_15_r20/external/bazelbuild-rules_rust/examples/proto/common.proto (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1syntax = "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