mirror of
https://github.com/nkanaev/yarr.git
synced 2025-05-24 21:19:19 +00:00
15 lines
248 B
Go
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
|
|
}
|