mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 02:37:50 +08:00
14 lines
225 B
Go
14 lines
225 B
Go
package eval
|
|
|
|
import "errors"
|
|
|
|
var errNotSupportedOnWindows = errors.New("not supported on Windows")
|
|
|
|
func execFn(...any) error {
|
|
return errNotSupportedOnWindows
|
|
}
|
|
|
|
func fg(...int) error {
|
|
return errNotSupportedOnWindows
|
|
}
|