mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
25 lines
529 B
Protocol Buffer
25 lines
529 B
Protocol Buffer
// protoc --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative:. *.proto
|
|
|
|
syntax = "proto3";
|
|
|
|
package protobuf;
|
|
|
|
option go_package = "github.com/gogf/gf/grpc/example/helloworld/protobuf";
|
|
|
|
|
|
// The greeting service definition.
|
|
service Greeter {
|
|
// Sends a greeting
|
|
rpc SayHello (HelloRequest) returns (HelloReply) {}
|
|
}
|
|
|
|
// The request message containing the user's name.
|
|
message HelloRequest {
|
|
string name = 1;
|
|
}
|
|
|
|
// The response message containing the greetings
|
|
message HelloReply {
|
|
string message = 1;
|
|
}
|