2017-02-07 21:33:23 +00: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.
|
|
|
|
|
2018-10-02 14:28:04 +00:00
|
|
|
// +build !appengine,!js
|
2017-04-11 15:10:46 +00:00
|
|
|
|
2017-02-07 21:33:23 +00:00
|
|
|
package logrus
|
|
|
|
|
2018-10-02 14:28:04 +00:00
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2018-01-22 11:16:03 +00:00
|
|
|
const ioctlReadTermios = unix.TCGETS
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2018-01-22 11:16:03 +00:00
|
|
|
type Termios unix.Termios
|
2018-10-02 14:28:04 +00:00
|
|
|
|
|
|
|
func initTerminal(w io.Writer) {
|
|
|
|
}
|