This commit is contained in:
afkarxyz
2025-12-13 13:36:36 +07:00
parent 22742f1ddd
commit 910420634c
3 changed files with 34 additions and 15 deletions
+14
View File
@@ -0,0 +1,14 @@
//go:build !windows
// +build !windows
package backend
import (
"os/exec"
)
// setHideWindow is a no-op on non-Windows platforms
func setHideWindow(cmd *exec.Cmd) {
// No-op on Unix-like systems
}