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