adradius/vendor/github.com/sevlyar/go-daemon/os_executable.go

12 lines
115 B
Go
Raw Normal View History

2020-03-04 09:20:30 +01:00
// +build go1.8
package daemon
import (
"os"
)
func osExecutable() (string, error) {
return os.Executable()
}