mirror of
https://github.com/kemko/reproxy.git
synced 2026-01-06 10:15:47 +03:00
13 lines
166 B
Go
13 lines
166 B
Go
//+build !darwin,!freebsd,!netbsd,!openbsd,!windows
|
|
|
|
package term
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
getTermios = unix.TCGETS
|
|
setTermios = unix.TCSETS
|
|
)
|