k3s/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
Darren Shepherd a005219c5b Update vendor
2019-08-22 09:14:47 -07:00

12 lines
111 B
Go

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