1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-31 07:33:33 +00:00
Files
rclone/vendor/github.com/Sirupsen/logrus/terminal_appengine.go
2017-08-04 17:09:28 +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
}