mirror of
https://gitee.com/johng/gf
synced 2026-07-03 11:51:04 +08:00
22 lines
256 B
Protocol Buffer
22 lines
256 B
Protocol Buffer
// protoc --go_out=plugins=grpc:. *.proto
|
|
|
|
syntax = "proto3";
|
|
|
|
package proto;
|
|
|
|
option go_package = "/proto";
|
|
|
|
service Echo{
|
|
rpc Say(SayReq) returns (SayRes) {}
|
|
}
|
|
|
|
message SayReq {
|
|
string content = 1;
|
|
}
|
|
|
|
message SayRes {
|
|
string content = 1;
|
|
}
|
|
|
|
|