shell/linux/events.go

10 lines
106 B
Go

package linux
const (
EventOutput = iota
EventStderr
)
type EventOutputData struct {
Output string
}