Files
logrus/terminal_check_no_terminal.go
T
2019-05-18 11:44:18 +02:00

12 lines
116 B
Go

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