Files
rpcx/codec/testdata/protobuf.proto
2024-05-30 16:17:30 +08:00

11 lines
166 B
Protocol Buffer

syntax = "proto3";
package testdata;
option go_package = "./testdata";
message ProtoColorGroup {
int32 id = 1;
string name = 2;
repeated string colors = 3;
}