Files
yarr/src/platform/fixconsole_default.go
Nazar Kanaev 632412c10e go fmt
2023-02-02 22:06:27 +00:00

16 lines
268 B
Go

//go:build !windows
// +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
}