bubblewand/templates/tui/model.go.tmpl
2025-07-22 02:55:00 -04:00

11 lines
142 B
Cheetah

package tui
import tea "github.com/charmbracelet/bubbletea"
type model struct {
count int
}
func (m model) Init() tea.Cmd {
return nil
}