EventStart indicates that a command execution has started.
| 73 | |
| 74 | // EventStart indicates that a command execution has started. |
| 75 | type EventStart struct { |
| 76 | context context.Context |
| 77 | Type Type |
| 78 | } |
| 79 | |
| 80 | // NewEventStart creates a new EventStart with the given context and type. |
| 81 | func NewEventStart(ctx context.Context, t Type) EventStart { |
nothing calls this directly
no outgoing calls
no test coverage detected