mirror of
https://github.com/nkanaev/yarr.git
synced 2025-12-23 11:44:04 +00:00
15 lines
249 B
Go
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
|
|
}
|