yarr/src/platform/fixconsole_default.go
2021-11-10 11:06:30 +00:00

15 lines
248 B
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
}