eed1c0f832
The GopherJS build tag is "js" not "gopherjs" Signed-off-by: Christian Stewart <christian@paral.in>
12 lines
114 B
Go
12 lines
114 B
Go
// +build appengine js
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|