gortr/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
Oliver Geiselhardt-Herms 0830f47c56 Update go modules
2023-04-26 14:51:31 +02:00

12 lines
111 B
Go

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