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

12 lines
115 B
Go
Raw Normal View History

2019-06-27 13:30:45 +02:00
// +build go1.8
package daemon
import (
"os"
)
func osExecutable() (string, error) {
return os.Executable()
}