2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-02 21:40:32 +00:00
cointop/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
2019-04-21 19:39:32 -07:00

12 lines
111 B
Go

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