Last active
December 30, 2019 22:22
-
-
Save gistlyn/909988a13d2cfe42a40778de97094902 to your computer and use it in GitHub Desktop.
Go Google protoc insecure GrpcServicesClient TodoWorld Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
context "context" | |
"fmt" | |
"log" | |
"google.golang.org/grpc" | |
pb "TodoWorld/services" | |
"time" | |
) | |
func main() { | |
conn, err := grpc.Dial("todoworld.servicestack.net:5054", grpc.WithInsecure()) | |
if err != nil { | |
log.Fatalf("fail to dial: %v", err) | |
} | |
defer conn.Close() | |
client := pb.NewGrpcServicesClient(conn) | |
ctx, cancel := context.WithTimeout(context.Background(), time.Second) | |
defer cancel() | |
response, err := client.GetHello(ctx, &pb.Hello{Name: "gRPC Go"}) | |
if err != nil { | |
log.Fatalf("GetHello: %v", err) | |
} | |
fmt.Println(response.Result) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment