2026-09-01 20:12:12 +03:00
|
|
|
//go:build !windows
|
|
|
|
|
|
|
|
|
|
package instance
|
|
|
|
|
|
2026-09-01 20:17:06 +03:00
|
|
|
import "errors"
|
2026-09-01 20:12:12 +03:00
|
|
|
|
2026-09-01 20:17:06 +03:00
|
|
|
func Launch(exe string, args []string) error {
|
|
|
|
|
return errors.New("launch is only supported on windows")
|
2026-09-01 20:12:12 +03:00
|
|
|
}
|