From ea2b3a6b3fb8223f1f51f842a00d388d8f659559 Mon Sep 17 00:00:00 2001 From: Matt Moore Date: Wed, 18 Dec 2019 10:44:06 -0800 Subject: [PATCH] golang format tools (#2063) Produced via: `gofmt -s -w $(find -path './vendor' -prune -o -type f -name '*.go' -print))` `goimports -w $(find -name '*.go' | grep -v vendor)` /assign samodell /cc samodell --- docs/serving/samples/grpc-ping-go/proto/ping.pb.go | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/serving/samples/grpc-ping-go/proto/ping.pb.go b/docs/serving/samples/grpc-ping-go/proto/ping.pb.go index 508c4256a..0543a6279 100644 --- a/docs/serving/samples/grpc-ping-go/proto/ping.pb.go +++ b/docs/serving/samples/grpc-ping-go/proto/ping.pb.go @@ -5,12 +5,15 @@ package ping -import proto "github.com/golang/protobuf/proto" -import fmt "fmt" -import math "math" - import ( + fmt "fmt" + + proto "github.com/golang/protobuf/proto" + + math "math" + context "golang.org/x/net/context" + grpc "google.golang.org/grpc" )