1
0
mirror of https://github.com/maaslalani/gambit.git synced 2024-11-28 08:38:36 +02:00
gambit/main.go

18 lines
220 B
Go
Raw Normal View History

2021-12-22 00:57:16 +02:00
package main
import (
"log"
tea "github.com/charmbracelet/bubbletea"
"github.com/maaslalani/gambit/game"
)
func main() {
p := tea.NewProgram(game.Model())
err := p.Start()
if err != nil {
log.Fatal(err)
}
}