Initial support for PGP decryption & signatures

This commit is contained in:
Drew DeVault 2020-03-03 16:20:07 -05:00
commit f3158b36f1
17 changed files with 523 additions and 82 deletions

View file

@ -16,6 +16,10 @@ type Drawable interface {
Invalidate()
}
type RootDrawable interface {
Initialize(ui *UI)
}
type Interactive interface {
// Returns true if the event was handled by this component
Event(event tcell.Event) bool