mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-25 01:25:39 +00:00
10 lines
171 B
Go
10 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
|
|
}
|