(value string, opts []string)
| 635 | } |
| 636 | |
| 637 | func isIncluded(value string, opts []string) bool { |
| 638 | for _, opt := range opts { |
| 639 | if strings.EqualFold(opt, value) { |
| 640 | return true |
| 641 | } |
| 642 | } |
| 643 | return false |
| 644 | } |
| 645 | |
| 646 | func boolToStatus(status bool) *string { |
| 647 | var result string |
no outgoing calls
no test coverage detected