safing-portmaster/pmctl/console_linux.go
2019-07-16 13:27:31 +02:00

10 lines
146 B
Go

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