mirror of
https://github.com/TECHNOFAB11/powerproto.git
synced 2025-12-12 08:00:04 +01:00
16 lines
308 B
Protocol Buffer
16 lines
308 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package powerproto.examples.greeter;
|
||
|
|
option go_package = "github.com/storyicon/powerproto/examples/greeter/apis;apis";
|
||
|
|
|
||
|
|
service Greeter {
|
||
|
|
rpc SayHello (HelloRequest) returns (HelloReply);
|
||
|
|
}
|
||
|
|
|
||
|
|
message HelloRequest {
|
||
|
|
string name = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
message HelloReply {
|
||
|
|
string message = 1;
|
||
|
|
}
|