mirror of
https://github.com/sqlitebrowser/go-dbhub.git
synced 2025-12-20 07:59:29 -06:00
Only float, integer, and text values return meaningful values. The rest (including blobs) just return an empty string for now.
12 lines
111 B
Go
12 lines
111 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|