Starting on UI. Coverage no longer 100% :c

This commit is contained in:
Madison Rye Progress
2026-03-18 22:05:07 -07:00
parent bbc87afee1
commit bbbcebc79c
10 changed files with 313 additions and 73 deletions

View File

@ -4,11 +4,12 @@ import (
"fmt"
"os"
"git.makyo.dev/makyo/gogogogogram/ui"
tea "github.com/charmbracelet/bubbletea"
)
func main() {
p := tea.NewProgram(newModel(4, 4))
p := tea.NewProgram(ui.NewModel(4, 4))
if _, err := p.Run(); err != nil {
fmt.Printf("Ah drat — %v\n", err)
os.Exit(1)