bubblewand/Output/tui/model.go

11 lines
142 B
Go

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