vegapokerbot/cmd/run.go

12 lines
194 B
Go
Raw Normal View History

2024-05-07 21:49:09 +03:00
package cmd
import (
"gitea.neur0tx.site/Neur0toxine/vegapokerbot/internal/app"
)
type RunCommand struct{}
func (r *RunCommand) Execute(args []string) error {
return (&app.App{}).Start()
}