mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-15 13:18:45 +00:00
Vincent Batts
9be05594fe
```shell dep ensure -update ``` Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
9 lines
125 B
Go
9 lines
125 B
Go
// +build !appengine,!js,!windows,aix
|
|
|
|
package logrus
|
|
|
|
import "io"
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return false
|
|
}
|