owpengram-server/internal/procctl/hidewindow_other.go
2026-08-26 02:44:59 +03:00

9 lines
230 B
Go

//go:build !windows
package procctl
import "os/exec"
// hideWindow is a no-op on non-Windows -- there is no console window to
// suppress. See hidewindow_windows.go for why this exists at all.
func hideWindow(cmd *exec.Cmd) {}