EventEnd indicates that a command execution has ended. This event carries the output of the command execution, which could be an error if the command failed.
| 91 | // This event carries the output of the command execution, which could be |
| 92 | // an error if the command failed. |
| 93 | type EventEnd struct { |
| 94 | context context.Context |
| 95 | Output Output |
| 96 | } |
| 97 | |
| 98 | // NewEventEnd creates a new EventEnd with the given context and output. |
| 99 | func NewEventEnd(ctx context.Context, output Output) EventEnd { |
nothing calls this directly
no outgoing calls
no test coverage detected