(log *logr.Logger)
| 159 | } |
| 160 | |
| 161 | func WithLogger(log *logr.Logger) ServerOption { |
| 162 | return serverOptionFunc(func(c *serverOptions) (*serverOptions, error) { |
| 163 | c.log = log |
| 164 | return c, nil |
| 165 | }) |
| 166 | } |
| 167 | |
| 168 | func GetBuiltinTubeFactoryBuilder() map[string]func(configMap common.ConfigMap) (contube.TubeFactory, error) { |
| 169 | return map[string]func(configMap common.ConfigMap) (contube.TubeFactory, error){ |
nothing calls this directly
no test coverage detected