fix compile error for other os than windows

This commit is contained in:
Adrian Zürcher
2025-12-29 11:20:50 +01:00
parent 8df18a243f
commit 39fb913f87
3 changed files with 36 additions and 18 deletions

9
converter/hideOthers.go Normal file
View File

@@ -0,0 +1,9 @@
//go:build !windows
package converter
// hideConsole does nothing on non-Windows systems
func hideConsole() {
// macOS and Linux don't have the same "console window" concept
// that needs manual hiding at runtime like Windows.
}