safing-portmaster/cmds/portmaster-start/console_default.go
2022-02-14 16:03:10 +01:00

11 lines
166 B
Go

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