term.go 104 B

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