Files
html2pdf/converter/hideOthers.go
2025-12-29 11:20:50 +01:00

10 lines
242 B
Go

//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.
}