Files

10 lines
163 B
Go
Raw Permalink 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")
}