2024-07-06 17:48:45 +02:00
|
|
|
package linux
|
|
|
|
|
|
|
|
const (
|
|
|
|
EventOutput = iota
|
2024-07-06 21:09:17 +02:00
|
|
|
EventExit
|
2024-07-06 17:48:45 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type EventOutputData struct {
|
2024-07-06 21:09:17 +02:00
|
|
|
Output string
|
|
|
|
CmdOptions CommandOptions
|
|
|
|
}
|
|
|
|
|
|
|
|
type EventExitData struct {
|
|
|
|
HasSucceeded bool
|
|
|
|
ExitCode int
|
|
|
|
CmdOptions CommandOptions
|
2024-07-06 17:48:45 +02:00
|
|
|
}
|