5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00
matterbridge/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
2019-06-16 23:33:25 +02:00

12 lines
116 B
Go

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