waiting creates a new waiting event; kept as a named func for use as a function value.
(id string)
| 89 | |
| 90 | // waiting creates a new waiting event; kept as a named func for use as a function value. |
| 91 | func waiting(id string) api.Resource { |
| 92 | return newEvent(id, api.Working, api.StatusWaiting) |
| 93 | } |
| 94 | |
| 95 | // healthy creates a new healthy event; kept as a named func for use as a function value. |
| 96 | func healthy(id string) api.Resource { |
nothing calls this directly
no test coverage detected