logrus/terminal_bsd.go

18 lines
238 B
Go
Raw Normal View History

// +build darwin freebsd openbsd netbsd dragonfly
// +build !appengine,!js
package logrus
import (
"io"
"golang.org/x/sys/unix"
)
2017-07-26 11:15:24 +03:00
const ioctlReadTermios = unix.TIOCGETA
2017-07-26 11:15:24 +03:00
type Termios unix.Termios
2018-04-03 05:47:29 +03:00
func initTerminal(w io.Writer) {
2018-04-03 05:47:29 +03:00
}