buildingEvent creates a new Building in progress Resource
(id string)
| 79 | |
| 80 | // buildingEvent creates a new Building in progress Resource |
| 81 | func buildingEvent(id string) api.Resource { |
| 82 | return newEvent("Image "+id, api.Working, api.StatusBuilding) |
| 83 | } |
| 84 | |
| 85 | // builtEvent creates a new built (done) Resource |
| 86 | func builtEvent(id string) api.Resource { |
no test coverage detected