mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-07 15:10:01 +08:00
12 lines
172 B
Protocol Buffer
12 lines
172 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package svc;
|
|
|
|
option go_package = "example.com/demo/pb";
|
|
|
|
import "ext.proto";
|
|
|
|
service QueryService {
|
|
rpc Query(ext.ExtReq) returns (ext.ExtReply);
|
|
}
|