Files
2020-01-13 03:37:51 +00:00

10 lines
115 B
Go
Executable File

//+build go1.8,!openbsd
package osext
import "os"
func executable() (string, error) {
return os.Executable()
}