You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
726 B
31 lines
726 B
3 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package helloworld.v1;
|
||
|
|
||
|
import "google/api/annotations.proto";
|
||
|
|
||
|
option go_package = "github.com/go-kratos/kratos/examples/i18n/api/helloworld/v1;v1";
|
||
|
option java_multiple_files = true;
|
||
|
option java_package = "dev.kratos.api.helloworld.v1";
|
||
|
option java_outer_classname = "HelloWorldProtoV1";
|
||
|
|
||
|
// The greeting service definition.
|
||
|
service Greeter {
|
||
|
// Sends a greeting
|
||
|
rpc SayHello (HelloRequest) returns (HelloReply) {
|
||
|
option (google.api.http) = {
|
||
|
get: "/helloworld/{name}"
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// The request message containing the user's name.
|
||
|
message HelloRequest {
|
||
|
string name = 1;
|
||
|
}
|
||
|
|
||
|
// The response message containing the greetings
|
||
|
message HelloReply {
|
||
|
string message = 1;
|
||
|
}
|