blob: 2403de981929f6af51da8c875d09252e920601cb [file] [log] [blame]
khenaidooab1f7bd2019-11-14 14:00:27 -05001// +build appengine
2
3package logrus
4
5import (
6 "io"
7)
8
9func checkIfTerminal(w io.Writer) bool {
10 return true
11}