Vincent Batts
37d776ac40
updating and adding vendored source to do it Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
11 lines
120 B
Go
11 lines
120 B
Go
// +build appengine gopherjs
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|