Reviewed-on: #2 Co-authored-by: Anna Rose Wiggins <annabunches@gmail.com> Co-committed-by: Anna Rose Wiggins <annabunches@gmail.com>
17 lines
280 B
Go
17 lines
280 B
Go
package main
|
|
|
|
import "github.com/holoplot/go-evdev"
|
|
|
|
type ChannelEventType int
|
|
|
|
const (
|
|
ChannelEventInput ChannelEventType = iota
|
|
ChannelEventTimer
|
|
ChannelEventReload
|
|
)
|
|
|
|
type ChannelEvent struct {
|
|
Type ChannelEventType
|
|
Device *evdev.InputDevice
|
|
Event *evdev.InputEvent
|
|
}
|