mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-10-31 22:36:38 +00:00
Vincent Batts
9be05594fe
```shell dep ensure -update ``` Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
18 lines
302 B
Go
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)
|
|
}
|
|
}
|