1
0
mirror of https://github.com/42wim/matterbridge.git synced 2024-05-06 15:54:56 +00:00

11 lines
171 B
Go
Raw Normal View History

2017-03-25 20:45:10 +01:00
// +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
}