1
0
Fork 0
mirror of https://github.com/Luzifer/waitfor.git synced 2024-10-18 13:24:23 +00:00
waitfor/vendor/github.com/sirupsen/logrus/terminal_windows.go
Knut Ahlers dbb3278c4f
Vendor dependencies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-10-18 23:25:09 +02:00

18 lines
302 B
Go

// +build !appengine,!js,windows
package logrus
import (
"io"
"os"
"syscall"
sequences "github.com/konsorten/go-windows-terminal-sequences"
)
func initTerminal(w io.Writer) {
switch v := w.(type) {
case *os.File:
sequences.EnableVirtualTerminalProcessing(syscall.Handle(v.Fd()), true)
}
}