mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
12 lines
120 B
Go
12 lines
120 B
Go
// +build appengine gopherjs
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|