forked from mystiq/dex
8 lines
147 B
Go
8 lines
147 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
// IsTerminal returns true if stderr's file descriptor is a terminal.
|
|
func IsTerminal() bool {
|
|
return true
|
|
}
|