
For now this is a stub for everything but linux, which is a slightly modified copy of the official implementation. Should address #1778.
9 строки
138 Б
Go
9 строки
138 Б
Go
// +build !linux
|
|
|
|
package os
|
|
|
|
import "errors"
|
|
|
|
func Executable() (string, error) {
|
|
return "", errors.New("Executable not implemented")
|
|
}
|