12 lines
194 B
Go
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()
|
||
|
}
|