mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-13 09:04:06 -08:00
59de58d380
* Docker Swarm service discovery Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
12 lines
111 B
Go
12 lines
111 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|