Files
tasksquire/internal/common/component.go
Martin Pander 418bcd96a8 Tear down everything
Fix config
2026-02-26 22:47:12 +01:00

10 lines
141 B
Go

package common
import tea "charm.land/bubbletea/v2"
type Component interface {
tea.Model
//help.KeyMap
SetSize(width int, height int)
}