mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
10 lines
146 B
Go
10 lines
146 B
Go
package main
|
|
|
|
import "os/exec"
|
|
|
|
func attachToParentConsole() (attached bool, err error) {
|
|
return true, nil
|
|
}
|
|
|
|
func hideWindow(cmd *exec.Cmd) {
|
|
}
|