mirror of
https://github.com/safing/portmaster
synced 2025-04-22 20:09:09 +00:00
11 lines
166 B
Go
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) {}
|