- Deploy exe to alternate port 5033 - Current instance keeps running - Add parallel mode and addr flag - Add update panel to web UI - Update OpenAPI spec and CLI
10 lines
163 B
Go
10 lines
163 B
Go
//go:build !windows
|
|
|
|
package instance
|
|
|
|
import "errors"
|
|
|
|
func Launch(exe string, args []string) error {
|
|
return errors.New("launch is only supported on windows")
|
|
}
|