createdEvent creates a new Created (done) Resource
(id string)
| 54 | |
| 55 | // createdEvent creates a new Created (done) Resource |
| 56 | func createdEvent(id string) api.Resource { |
| 57 | return newEvent(id, api.Done, api.StatusCreated) |
| 58 | } |
| 59 | |
| 60 | // stoppingEvent creates a new Stopping in progress Resource |
| 61 | func stoppingEvent(id string) api.Resource { |
no test coverage detected