mirror of
https://github.com/Luzifer/tex-api.git
synced 2024-11-12 18:12:43 +00:00
Knut Ahlers
5e470b62fe
- Sirupsen/logrus was renamed - satori/go.uuid is deprecated Signed-off-by: Knut Ahlers <knut@ahlers.me>
14 lines
330 B
Go
14 lines
330 B
Go
// 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,!gopherjs
|
|
|
|
package logrus
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const ioctlReadTermios = unix.TCGETS
|
|
|
|
type Termios unix.Termios
|