Initial commit

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
nemunaire 2026-03-29 14:27:46 +02:00 committed by Pierre-Olivier Mercier
commit fcc6f3eb4c
10 changed files with 1002 additions and 0 deletions

16
main.go Normal file
View file

@ -0,0 +1,16 @@
package main
import (
"fmt"
"os"
tea "github.com/charmbracelet/bubbletea"
)
func main() {
p := tea.NewProgram(initialModel(), tea.WithAltScreen())
if _, err := p.Run(); err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
os.Exit(1)
}
}