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