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
This commit is contained in:
Matt Moore 2019-12-18 10:44:06 -08:00 committed by Knative Prow Robot
parent 01fd1b3a3a
commit ea2b3a6b3f
1 changed files with 7 additions and 4 deletions

View File

@ -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"
)