mirror of
https://github.com/NotAShelf/goblin.git
synced 2024-11-01 19:11:16 +00:00
12 lines
111 B
Go
12 lines
111 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|