(insecure bool)
| 68 | } |
| 69 | |
| 70 | func WithInsecure(insecure bool) Option { |
| 71 | return func(opt *newOptionalArg) { |
| 72 | opt.insecure = insecure |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | func WithOrgName(orgName string) Option { |
| 77 | return func(opt *newOptionalArg) { |
no outgoing calls
no test coverage detected