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