mirror of
https://github.com/fullstorydev/grpcurl.git
synced 2026-06-13 22:41:43 +03:00
* Bump github.com/jhump/protoreflect from 1.13.0 to 1.14.0 Bumps [github.com/jhump/protoreflect](https://github.com/jhump/protoreflect) from 1.13.0 to 1.14.0. - [Release notes](https://github.com/jhump/protoreflect/releases) - [Commits](https://github.com/jhump/protoreflect/compare/v1.13.0...v1.14.0) --- updated-dependencies: - dependency-name: github.com/jhump/protoreflect dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix ci * what can we even build on? * stop testing old things Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Scott Blum <dragonsinth@gmail.com>
16 lines
375 B
Go
16 lines
375 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows
|
|
// +build darwin dragonfly freebsd linux netbsd openbsd solaris windows
|
|
|
|
package main
|
|
|
|
var (
|
|
unix = flags.Bool("unix", false, prettify(`
|
|
Indicates that the server address is the path to a Unix domain socket.`))
|
|
)
|
|
|
|
func init() {
|
|
isUnixSocket = func() bool {
|
|
return *unix
|
|
}
|
|
}
|