(entityId entity.Id, reason string)
| 117 | } |
| 118 | |
| 119 | func NewImportNothing(entityId entity.Id, reason string) ImportResult { |
| 120 | return ImportResult{ |
| 121 | EntityId: entityId, |
| 122 | Reason: reason, |
| 123 | Event: ImportEventNothing, |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | func NewImportBug(entityId entity.Id) ImportResult { |
| 128 | return ImportResult{ |