healthy creates a new healthy event; kept as a named func for use as a function value.
(id string)
| 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 { |
| 97 | return newEvent(id, api.Done, api.StatusHealthy) |
| 98 | } |
| 99 | |
| 100 | // exited creates a new exited event; kept as a named func for use as a function value. |
| 101 | func exited(id string) api.Resource { |
nothing calls this directly
no test coverage detected