(i int)
| 16 | type Option func(*Options) |
| 17 | |
| 18 | func Size(i int) Option { |
| 19 | return func(o *Options) { |
| 20 | o.Size = i |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | func Transport(t transport.Transport) Option { |
| 25 | return func(o *Options) { |
no outgoing calls
no test coverage detected
searching dependent graphs…