route/vendor/github.com/kardianos/osext/osext_go18.go

10 lines
115 B
Go
Raw Permalink Normal View History

2017-10-06 15:29:20 +00:00
//+build go1.8,!openbsd
package osext
import "os"
func executable() (string, error) {
return os.Executable()
}