mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 18:34:41 +01:00
12 lines
115 B
Go
12 lines
115 B
Go
|
// +build go1.8
|
||
|
|
||
|
package daemon
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func osExecutable() (string, error) {
|
||
|
return os.Executable()
|
||
|
}
|