summaryrefslogtreecommitdiff
path: root/vendor/github.com/sevlyar/go-daemon/os_executable.go
blob: ae380743eaeb95f0cfbd11fe57154b4260b49fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build go1.8

package daemon

import (
	"os"
)

func osExecutable() (string, error) {
	return os.Executable()
}