mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-03-22 17:19:36 +01:00
12 lines
111 B
Go
12 lines
111 B
Go
// +build appengine
|
|
|
|
package logger
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|