open-vault/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go

12 lines
116 B
Go
Raw Normal View History

2019-08-14 21:02:01 +00:00
// +build js nacl plan9
2018-10-03 16:55:26 +00:00
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return false
}