os_executable.go 115 B

1234567891011
  1. // +build go1.8
  2. package daemon
  3. import (
  4. "os"
  5. )
  6. func osExecutable() (string, error) {
  7. return os.Executable()
  8. }