mirror of
https://github.com/status-im/matterbridge.git
synced 2025-01-12 07:14:13 +00:00
11 lines
171 B
Go
11 lines
171 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import "io"
|
|
|
|
// IsTerminal returns true if stderr's file descriptor is a terminal.
|
|
func IsTerminal(f io.Writer) bool {
|
|
return true
|
|
}
|