mirror of
https://github.com/rclone/rclone.git
synced 2025-01-13 17:58:30 +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()
|
||
|
}
|