mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-11-09 23:21:03 +01:00
12 lines
190 B
Go
12 lines
190 B
Go
package proxy
|
|
|
|
type logger interface {
|
|
Printf(format string, args ...interface{})
|
|
}
|
|
|
|
type noopLogger struct{}
|
|
|
|
func (l *noopLogger) Printf(_ string, _ ...interface{}) {
|
|
// Do nothing :)
|
|
}
|