mirror of
https://github.com/rancher/os.git
synced 2025-06-15 09:48:26 +00:00
10 lines
122 B
Go
10 lines
122 B
Go
// +build linux
|
|
|
|
package util
|
|
|
|
import "github.com/tredoe/term"
|
|
|
|
func IsRunningInTty() bool {
|
|
return term.IsTerminal(1)
|
|
}
|