refactor: updated cache editor implementation

This commit is contained in:
David Allen 2025-06-16 16:19:43 -06:00
parent 5a02fd9b55
commit 54f3a98e6e
Signed by: towk
GPG key ID: 0430CDBE22619155
6 changed files with 78 additions and 28 deletions

View file

@ -15,6 +15,10 @@ type Model struct {
Table table.Model
}
func NewModel() Model {
return Model{}
}
func (m Model) Init() tea.Cmd { return nil }
func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {