tui/events.go

6 lines
86 B
Go
Raw Normal View History

2021-01-10 21:52:29 +01:00
package tui
type Events interface {
2022-04-01 20:10:51 +02:00
OnKeyPressed(event *KeyEvent) (consumed bool)
2021-01-10 21:52:29 +01:00
}