| 92 | } |
| 93 | |
| 94 | type AlertEdges struct { |
| 95 | Owner *Machine `json:"owner,omitempty"` |
| 96 | Decisions []*Decision `json:"decisions,omitempty"` |
| 97 | Events []*Event `json:"events,omitempty"` |
| 98 | Metas []*Meta `json:"metas,omitempty"` |
| 99 | } |
| 100 | |
| 101 | func (e AlertEdges) OwnerOrErr() (*Machine, error) { |
| 102 | return nil, nil |
nothing calls this directly
no outgoing calls
no test coverage detected