github.com/stackb/rules_proto@v0.0.0-20240221195024-5428336c51f1/language/protobuf/oldtestdata/java/test.proto (about)

     1  syntax = "proto3";
     2  
     3  message BoolValue {
     4    bool value = 1;
     5  }
     6  
     7  enum PayloadType {
     8    COMPRESSABLE = 0;
     9  }
    10  
    11  message Payload {
    12    PayloadType type = 1;
    13    bytes body = 2;
    14  }
    15  
    16  message EchoStatus {
    17    int32 code = 1;
    18    string message = 2;
    19  }