mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 17:04:01 +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()
|
|
}
|