1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 23:34:57 +00:00
Files
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)
}