Add tests for EventBuffer.

This commit is contained in:
Anna Rose Wiggins 2025-07-17 20:23:26 -04:00
parent 3ffccf4c08
commit 2a86751df9
4 changed files with 116 additions and 8 deletions

View file

@ -0,0 +1,7 @@
package virtualdevice
import "github.com/holoplot/go-evdev"
type VirtualDevice interface {
WriteOne(*evdev.InputEvent) error
}