(f func(*serverOptions))
| 224 | } |
| 225 | |
| 226 | func newFuncServerOption(f func(*serverOptions)) *funcServerOption { |
| 227 | return &funcServerOption{ |
| 228 | f: f, |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | // joinServerOption provides a way to combine arbitrary number of server |
| 233 | // options into one. |
no outgoing calls
no test coverage detected