errorEventf creates a new Error Resource with format message
(id string, msg string, args ...any)
| 44 | |
| 45 | // errorEventf creates a new Error Resource with format message |
| 46 | func errorEventf(id string, msg string, args ...any) api.Resource { |
| 47 | return errorEvent(id, fmt.Sprintf(msg, args...)) |
| 48 | } |
| 49 | |
| 50 | // creatingEvent creates a new Create in progress Resource |
| 51 | func creatingEvent(id string) api.Resource { |
no test coverage detected