1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-11-17 14:18:39 +00:00
go-mtree/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
Vincent Batts 9be05594fe
vendor: update sources
```shell
dep ensure -update
```

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2019-01-21 11:03:35 -05:00

11 lines
111 B
Go

// +build appengine
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return true
}