()
| 45 | } |
| 46 | |
| 47 | func (e Event) String() string { |
| 48 | data, err := e.MarshalJSON() |
| 49 | if err != nil { |
| 50 | panic(err) |
| 51 | } |
| 52 | return string(data) |
| 53 | } |
| 54 | |
| 55 | type tmpEvent struct { |
| 56 | // Action is the action that happened in this event. |
no test coverage detected