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