(file string)
| 1123 | } |
| 1124 | |
| 1125 | func fileExistsError(file string) error { |
| 1126 | errMsg := wski18n.T("The file '{{.file}}' already exists", map[string]interface{}{ |
| 1127 | "file": file, |
| 1128 | }) |
| 1129 | |
| 1130 | return nonNestedError(errMsg) |
| 1131 | } |
| 1132 | |
| 1133 | func printActionCreated(entityName string) { |
| 1134 | fmt.Fprintf( |
no test coverage detected