11 lines
101 B
Go
11 lines
101 B
Go
package lib
|
|
|
|
type Action uint16
|
|
|
|
const (
|
|
ActionUnknown Action = iota
|
|
|
|
ActionPress
|
|
ActionRelease
|
|
)
|