COMMAND EVENTS CommandEvent represents command execution events
| 39 | |
| 40 | // CommandEvent represents command execution events |
| 41 | type CommandEvent struct { |
| 42 | Action string `json:"action"` |
| 43 | Args []string `json:"args,omitempty"` |
| 44 | Success bool `json:"success"` |
| 45 | Error string `json:"error,omitempty"` |
| 46 | } |
| 47 | |
| 48 | // CommandPayload represents the HTTP payload structure for command events |
| 49 | type CommandPayload struct { |
nothing calls this directly
no outgoing calls
no test coverage detected