13 lines
249 B
Go
13 lines
249 B
Go
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()
|
|
}
|