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

12 lines
142 B
Go
Raw Normal View History

//go:build !windows
package instance
func Launch(exe string, args []string) error {
return nil
}
func RestartSelf() error {
return nil
}