公式ドキュメントから GRPC を学ぼうとしています。これがgrpc-go に従ったチュートリアルです。
このコマンドを使用して proto を生成する
protoc --go_out=$PWD helloworld/helloworld.proto
この上記のコマンドはhelloworld.pb.go
問題なくファイルを生成しますが、問題はクライアント スタブのコードが生成されたファイルにないことです。
syntax = "proto3";
package helloworld;
// 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;
}
クライアント接続から取得している実際のエラー
未定義: helloworld.NewGreeterClient
そして、これはファイルの行から発生しc := pb.NewGreeterClient(conn)
ましgreeter_client/main.go
た
生成されたファイルでクライアント スタブが生成されないための背後にある理由