Files
logrus/terminal_check_appengine.go
T
Christian Stewart eed1c0f832 Fix GopherJS build tags
The GopherJS build tag is "js" not "gopherjs"

Signed-off-by: Christian Stewart <christian@paral.in>
2018-06-20 21:39:23 -07:00

12 lines
114 B
Go

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