mirror of
https://github.com/nkanaev/yarr.git
synced 2025-11-07 09:59:38 +00:00
16 lines
268 B
Go
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
|
|
}
|