12 lines
166 B
Go
12 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) {}
|