github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/i18n/prompts/errors.go (about)

     1  package promptsI18n
     2  
     3  import "fmt"
     4  
     5  var (
     6  	invalidType = "invalid type `%s`; expected one of: %v"
     7  )
     8  
     9  func InvalidType(_type string, types []string) error {
    10  	return fmt.Errorf(invalidType, _type, types)
    11  }