()
| 30 | type Option func(o *Options) |
| 31 | |
| 32 | func WithDebug() Option { |
| 33 | return func(o *Options) { |
| 34 | o.debugFork = true |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | func WithName(p string) Option { |
| 39 | return func(o *Options) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…