luet/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
Ettore Di Giacinto 420186b7db
Switch to go mod
2019-11-10 18:05:28 +01:00

12 lines
116 B
Go

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