1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-11-15 21:28:38 +00:00
go-mtree/vendor/github.com/sirupsen/logrus/terminal_check_aix.go

10 lines
125 B
Go
Raw Normal View History

// +build !appengine,!js,!windows,aix
package logrus
import "io"
func checkIfTerminal(w io.Writer) bool {
return false
}