func(*serverOptions) (*serverOptions, error)
| 79 | } |
| 80 | |
| 81 | type serverOptionFunc func(*serverOptions) (*serverOptions, error) |
| 82 | |
| 83 | func (f serverOptionFunc) apply(c *serverOptions) (*serverOptions, error) { |
| 84 | return f(c) |
no outgoing calls
no test coverage detected