tui/events.go
2022-04-01 20:10:51 +02:00

6 lines
86 B
Go

package tui
type Events interface {
OnKeyPressed(event *KeyEvent) (consumed bool)
}