
- remove docker/docker from Traefik vendor (unused) - use `ignore` for all Traefik vendor in integration glide. - defined only integration specific version of the dependencies.
10 lines
171 B
Go
10 lines
171 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import "io"
|
|
|
|
// IsTerminal returns true if stderr's file descriptor is a terminal.
|
|
func IsTerminal(f io.Writer) bool {
|
|
return true
|
|
}
|