mirror of
https://github.com/Luzifer/ots.git
synced 2024-10-01 01:06:09 -04:00
19 lines
302 B
Go
19 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)
|
||
|
}
|
||
|
}
|