(value string, opts []string)
| 628 | } |
| 629 | |
| 630 | func isIncluded(value string, opts []string) bool { |
| 631 | for _, opt := range opts { |
| 632 | if strings.EqualFold(opt, value) { |
| 633 | return true |
| 634 | } |
| 635 | } |
| 636 | return false |
| 637 | } |
| 638 | |
| 639 | func boolToStatus(status bool) *string { |
| 640 | var result string |
no outgoing calls
no test coverage detected