10 lines
242 B
Go
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.
|
|
}
|