go-mtree/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
Vincent Batts 8d3cf7ea39
vendor: glide update
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2019-01-21 10:10:51 -05:00

11 lines
111 B
Go

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