pkg/output/shipper/util_unix.go (11 lines of code) (raw):

//go:build !windows package shipper import ( "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" ) func defaultDialOptions() []grpc.DialOption { opts := []grpc.DialOption{ grpc.WithTransportCredentials(insecure.NewCredentials()), } return opts }