tui/events.go

8 lines
103 B
Go
Raw Normal View History

2021-01-10 21:52:29 +01:00
package tui
import "github.com/gdamore/tcell"
type Events interface {
OnKeyPressed(key tcell.Key)
}