Draft: poop

This commit is contained in:
2025-11-10 13:16:29 +08:00
parent dbd2ed6469
commit 68c6a63dfb
18 changed files with 550 additions and 45 deletions

14
workflows/gameClient.go Normal file
View File

@@ -0,0 +1,14 @@
package workflows
import (
"inp2025/stages"
tea "github.com/charmbracelet/bubbletea"
)
func GameClient() error {
program := tea.NewProgram(
stages.NewGameModel())
_, err := program.Run()
return err
}