• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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