Files
go-worm/lib/instance/launch_stub.go
T

10 lines
163 B
Go
Raw Normal View History

//go:build !windows
package instance
import "errors"
func Launch(exe string, args []string) error {
return errors.New("launch is only supported on windows")
}