adradius/vendor/github.com/sevlyar/go-daemon/os_executable.go
2020-03-04 09:20:30 +01:00

12 lines
115 B
Go

// +build go1.8
package daemon
import (
"os"
)
func osExecutable() (string, error) {
return os.Executable()
}