1
0
mirror of https://github.com/rancher/steve.git synced 2025-08-11 03:01:38 +00:00
steve/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
2019-08-04 10:41:32 -07:00

12 lines
111 B
Go

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