1
0
mirror of https://github.com/maaslalani/gambit.git synced 2025-02-05 13:05:17 +02:00
gambit/main.go
2021-12-24 12:59:46 -05:00

21 lines
236 B
Go

package main
import (
"log"
tea "github.com/charmbracelet/bubbletea"
)
func main() {
p := tea.NewProgram(
Model(),
tea.WithAltScreen(),
tea.WithMouseCellMotion(),
)
err := p.Start()
if err != nil {
log.Fatal(err)
}
}