(models []string, name string)
| 111 | } |
| 112 | |
| 113 | func modelExists(models []string, name string) bool { |
| 114 | for _, model := range models { |
| 115 | if model == name { |
| 116 | return true |
| 117 | } |
| 118 | } |
| 119 | return false |
| 120 | } |
no outgoing calls
no test coverage detected