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

     1  package applicationI18n
     2  
     3  import (
     4  	"fmt"
     5  )
     6  
     7  const (
     8  	selectPromptFailed = "selecting an application prompt failed with: %s"
     9  )
    10  
    11  func SelectPromptFailed(err error) error {
    12  	return fmt.Errorf(selectPromptFailed, err)
    13  }