Files
go-dbhub/vendor/github.com/Sirupsen/logrus/terminal_check_appengine.go
Justin Clift 8de2adc282 Return the query results in a somewhat useful fashion
Only float, integer, and text values return meaningful values.
The rest (including blobs) just return an empty string for now.
2020-07-30 18:08:42 +10:00

12 lines
111 B
Go

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