mirror of
https://github.com/rancher/os.git
synced 2025-07-03 10:06:13 +00:00
9 lines
147 B
Go
9 lines
147 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
// IsTerminal returns true if stderr's file descriptor is a terminal.
|
|
func IsTerminal() bool {
|
|
return true
|
|
}
|