mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 10:28:45 +08:00
13 lines
166 B
Protocol Buffer
13 lines
166 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package test;
|
||
|
option go_package = "go";
|
||
|
|
||
|
import "base.proto";
|
||
|
|
||
|
message Reply{}
|
||
|
|
||
|
|
||
|
service TestService{
|
||
|
rpc TestRpcTwo (base.Req)returns(Reply);
|
||
|
}
|