vegapokerbot/main.go

13 lines
249 B
Go
Raw Permalink Normal View History

2024-05-07 21:49:09 +03:00
package main
import (
"gitea.neur0tx.site/Neur0toxine/vegapokerbot/cmd"
"gitea.neur0tx.site/Neur0toxine/vegapokerbot/internal/app"
)
func main() {
p := app.NewParserWrapper()
p.AddCommand("run", "Starts the app", &cmd.RunCommand{})
p.Run()
}