vegapokerbot/cmd/run.go
2024-05-07 21:49:09 +03:00

12 lines
194 B
Go

package cmd
import (
"gitea.neur0tx.site/Neur0toxine/vegapokerbot/internal/app"
)
type RunCommand struct{}
func (r *RunCommand) Execute(args []string) error {
return (&app.App{}).Start()
}