github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/i18n/smartops/errors.go (about) 1 package smartopsI18n 2 3 import "fmt" 4 5 const ( 6 selectPromptFailed = "selecting a smartops prompt failed with: %s" 7 ) 8 9 func SelectPromptFailed(err error) error { 10 return fmt.Errorf(selectPromptFailed, err) 11 }