mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 15:11:02 +00:00
12 lines
158 B
Go
12 lines
158 B
Go
// +build darwin freebsd openbsd netbsd
|
|
|
|
package term
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
getTermios = unix.TIOCGETA
|
|
setTermios = unix.TIOCSETA
|
|
)
|