mirror of
https://github.com/rclone/rclone
synced 2024-11-11 09:30:44 +01:00
c1bfdd893f
dep ensure needed to do this, probably after various vendor merges
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
|
|
}
|