YTSFlix_Go/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
2018-11-04 15:58:15 +01:00

12 lines
111 B
Go

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