err := gw.Register[YourServiceHandler]FromEndpoint(ctx, mux, *echoEndpoint, opts)
But the generated service doesn't have any such method, nor anything that takes that set of parameters. I'm using a slightly modified hello_world.proto from the distro, and the only register method in hello_world.pb.go is
func RegisterGreeterServer(s *grpc.Server, srv GreeterServer)
I have the equivalent of *echoEndpoint in the original example to pass to *grpc.Server, but what should I pass as the second param?
Or what am I missing or doing wrong?
Thanks!