mirror of
https://github.com/smallnest/rpcx.git
synced 2025-12-24 12:27:56 +08:00
11 lines
166 B
Protocol Buffer
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;
|
|
} |