10 lines
106 B
Go
10 lines
106 B
Go
package linux
|
|
|
|
const (
|
|
EventOutput = iota
|
|
EventStderr
|
|
)
|
|
|
|
type EventOutputData struct {
|
|
Output string
|
|
}
|