1
0
mirror of https://github.com/rclone/rclone.git synced 2025-04-14 00:58:59 +02:00
rclone/vendor/github.com/sirupsen/logrus/terminal_appengine.go
Nick Craig-Wood c1bfdd893f vendor: update qingstor
dep ensure needed to do this, probably after various vendor merges
2017-08-09 13:03:07 +01:00

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
}