Event represents an event related to command execution.
| 68 | |
| 69 | // Event represents an event related to command execution. |
| 70 | type Event interface { |
| 71 | GetContext() context.Context |
| 72 | } |
| 73 | |
| 74 | // EventStart indicates that a command execution has started. |
| 75 | type EventStart struct { |
no outgoing calls
no test coverage detected