(s string)
| 398 | } |
| 399 | |
| 400 | func isValidIDStrategy(s string) bool { |
| 401 | for _, v := range validIDStrategies { |
| 402 | if s == v { |
| 403 | return true |
| 404 | } |
| 405 | } |
| 406 | return false |
| 407 | } |
| 408 | |
| 409 | func promptIDStrategy() (string, error) { |
| 410 | options := []huh.Option[string]{ |
no outgoing calls
no test coverage detected