mirror of
https://github.com/grafana/loki.git
synced 2026-03-13 09:33:58 +08:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Paul Rogers <paul.rogers@grafana.com> Co-authored-by: Trevor Whitney <trevorjwhitney@gmail.com>
14 lines
208 B
Go
14 lines
208 B
Go
//go:build darwin || freebsd || openbsd || netbsd
|
|
// +build darwin freebsd openbsd netbsd
|
|
|
|
package term
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
getTermios = unix.TIOCGETA
|
|
setTermios = unix.TIOCSETA
|
|
)
|