logrus/terminal_linux.go

22 lines
372 B
Go
Raw Normal View History

2014-04-23 22:21:11 +04:00
// Based on ssh/terminal:
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !appengine,!js
2014-04-23 22:21:11 +04:00
package logrus
import (
"io"
"golang.org/x/sys/unix"
)
2014-04-23 22:21:11 +04:00
const ioctlReadTermios = unix.TCGETS
2014-04-23 22:21:11 +04:00
2017-07-25 11:29:46 +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
}