1
0
mirror of https://github.com/rancher/steve.git synced 2025-09-01 07:27:46 +00:00
Files
steve/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
Darren Shepherd c0299c1506 Initial commit
2019-08-04 10:41:32 -07:00

12 lines
116 B
Go

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