1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-05 10:20:53 +02:00
go-micro/examples/http/rpccli/main.go

35 lines
777 B
Go

package main
import (
"context"
"log"
hello "github.com/asim/go-micro/examples/v3/greeter/srv/proto/hello"
"github.com/asim/go-micro/v3"
"github.com/asim/go-micro/v3/client"
"github.com/asim/go-micro/v3/registry"
)
func main() {
CallGrpcByHttp()
}
func CallGrpcByHttp() {
// create a new service
service := micro.NewService(
micro.Registry(registry.NewRegistry()),
)
// parse command line flags
service.Init()
c := service.Client()
req := &hello.Request{Name: "call grpc server by http client"}
// create request/response
request := client.NewRequest("go.micro.srv.greeter", "Say.Hello", req)
response := new(hello.Response)
// call service
err := c.Call(context.Background(), request, response)
log.Printf("err:%v response:%#v\n", err, response)
}