safing-portmaster/cmds/portmaster-start/console_default.go
2020-07-22 15:11:34 +02:00

12 lines
166 B
Go

// +build !windows
package main
import "os/exec"
func attachToParentConsole() (attached bool, err error) {
return true, nil
}
func hideWindow(cmd *exec.Cmd) {
}