feat: getting starting with a tui

This commit is contained in:
Andrey Nering
2025-05-28 22:08:11 -03:00
parent 4e84c6bb76
commit ca93c2be86
8 changed files with 199 additions and 14 deletions

13
internal/tui/tui.go Normal file
View File

@@ -0,0 +1,13 @@
package tui
import (
tea "github.com/charmbracelet/bubbletea/v2"
)
func Run() error {
m := newMainModel()
p := tea.NewProgram(m)
_, err := p.Run()
return err
}