|
|
%!s(int64=2) %!d(string=hai) anos | |
|---|---|---|
| .. | ||
| grpc_reflection_v1 | %!s(int64=2) %!d(string=hai) anos | |
| grpc_reflection_v1alpha | %!s(int64=2) %!d(string=hai) anos | |
| README.md | %!s(int64=2) %!d(string=hai) anos | |
| adapt.go | %!s(int64=2) %!d(string=hai) anos | |
| serverreflection.go | %!s(int64=2) %!d(string=hai) anos | |
Package reflection implements server reflection service.
The service implemented is defined in: https://github.com/grpc/grpc/blob/master/src/proto/grpc/reflection/v1alpha/reflection.proto.
To register server reflection on a gRPC server:
import "google.golang.org/grpc/reflection"
s := grpc.NewServer()
pb.RegisterYourOwnServer(s, &server{})
// Register reflection service on gRPC server.
reflection.Register(s)
s.Serve(lis)