1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-12 22:33:23 +00:00
Files
rclone/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
2019-07-28 12:05:50 +01:00

12 lines
111 B
Go

// +build appengine
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return true
}