mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-03-22 17:19:36 +01:00
9 lines
152 B
Go
9 lines
152 B
Go
package logger
|
|
|
|
import "io"
|
|
|
|
// Outable interface for loggers that allow setting the output writer
|
|
type Outable interface {
|
|
SetOutput(out io.Writer)
|
|
}
|