1
0
mirror of https://github.com/rancher/os.git synced 2025-06-18 19:27:26 +00:00
os/util/term.go

8 lines
104 B
Go
Raw Normal View History

package util
import "github.com/kless/term"
func IsRunningInTty() bool {
return term.IsTerminal(1)
}