mirror of
https://github.com/fullstorydev/grpcurl.git
synced 2026-05-22 19:51:44 +03:00
18 lines
367 B
Go
18 lines
367 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
|
|
|
|
package main
|
|
|
|
import "flag"
|
|
|
|
var (
|
|
unix = flag.String("unix", "",
|
|
`Use instead of -p to indicate listening on a Unix domain socket instead of a
|
|
TCP port. If present, must be the path to a domain socket.`)
|
|
)
|
|
|
|
func init() {
|
|
getUnixSocket = func() string {
|
|
return *unix
|
|
}
|
|
}
|