1
0
mirror of https://github.com/rancher/norman.git synced 2025-10-22 09:28:45 +00:00
Files
norman/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
2019-08-19 10:14:08 -07:00

12 lines
111 B
Go

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