mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
856b5aadb1
* reactor alert * optimize * add test case * update the target directory in case proto contains option * fix missing comments and format code
13 lines
167 B
Protocol Buffer
13 lines
167 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package test;
|
|
option go_package = "go";
|
|
|
|
import "base.proto";
|
|
|
|
message Req{}
|
|
|
|
|
|
service TestService {
|
|
rpc TestRpcTwo (Req) returns (base.Reply);
|
|
} |