mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-09 08:26:47 +00:00
12 lines
111 B
Go
Generated
12 lines
111 B
Go
Generated
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|