open-vault/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
Jeff Mitchell 98b479ab58 Bump deps
2018-01-26 18:51:00 -05:00

12 lines
111 B
Go

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