mirror of
https://github.com/containous/traefik.git
synced 2025-01-11 05:17:52 +03:00
18 lines
238 B
Go
18 lines
238 B
Go
// +build darwin freebsd openbsd netbsd dragonfly
|
|
// +build !appengine,!js
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const ioctlReadTermios = unix.TIOCGETA
|
|
|
|
type Termios unix.Termios
|
|
|
|
func initTerminal(w io.Writer) {
|
|
}
|