mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
23 lines
502 B
Protocol Buffer
23 lines
502 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_multiple_files = true;
|
||
|
option java_package = "io.grpc.examples.helloworld";
|
||
|
option java_outer_classname = "HelloWorldProto";
|
||
|
|
||
|
package helloworld;
|
||
|
|
||
|
// The greeting service definition.
|
||
|
service Greeter {
|
||
|
// Sends a greeting
|
||
|
rpc PostHello (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;
|
||
|
}
|