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