(output string)
| 302 | } |
| 303 | |
| 304 | func ShellOutput(output string) Event { |
| 305 | return &ShellOutputEvent{ |
| 306 | Type: "shell", |
| 307 | Output: output, |
| 308 | AgentContext: newAgentContext(""), |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | type WarningEvent struct { |
| 313 | AgentContext |
no test coverage detected