shell/linux/events.go

11 lines
106 B
Go
Raw Normal View History

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