summaryrefslogtreecommitdiffstats
path: root/internal/utils/tty_unix.go
blob: c344c0f96392dc4e3d20ec9e07a2a84f92b43421 (plain)
1
2
3
4
5
6
7
8
9
//go:build !windows

package utils

import "os"

func OpenTTY() (*os.File, error) {
	return os.OpenFile("/dev/tty", os.O_RDWR, 0)
}