mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
11 lines
180 B
Protocol Buffer
11 lines
180 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package stream;
|
|
|
|
option go_package = "github.com/zeromicro/go-zero";
|
|
|
|
message placeholder {}
|
|
|
|
service greet {
|
|
rpc hello (placeholder) returns (placeholder);
|
|
} |