mirror of
https://github.com/spaytac/orbiter.git
synced 2026-01-22 12:34:41 +00:00
9 lines
158 B
Go
9 lines
158 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
// IsTerminal returns true if stderr's file descriptor is a terminal.
|
|
func IsTerminal(f io.Writer) bool {
|
|
return true
|
|
}
|