Files
yarr/src/platform/fixconsole_default.go
2025-03-18 17:14:58 +00:00

15 lines
249 B
Go

//go:build !windows
package platform
// On non-windows platforms, we don't need to do anything. The console
// starts off attached already, if it exists.
func AttachConsole() error {
return nil
}
func FixConsoleIfNeeded() error {
return nil
}