1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-03-19 21:18:07 +02:00
kratos/internal/testdata/helloworld/helloworld.proto
longxboy 91714bcd34
test: add transport grpc test (#1580)
* add transport grpc test

* fix node
2021-10-22 15:57:01 +08:00

28 lines
579 B
Protocol Buffer

syntax = "proto3";
package helloworld;
import "google/api/annotations.proto";
option go_package = "github.com/go-kratos/kratos/v2/internal/testdata/helloworld";
// 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;
}