summaryrefslogtreecommitdiff
path: root/internal/cli/root.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cli/root.go')
-rw-r--r--internal/cli/root.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/cli/root.go b/internal/cli/root.go
index 158eb478..81ea75d2 100644
--- a/internal/cli/root.go
+++ b/internal/cli/root.go
@@ -8,6 +8,7 @@ import (
"strconv"
"github.com/roadrunner-server/errors"
+ "github.com/roadrunner-server/roadrunner/v2/internal/cli/jobs"
"github.com/roadrunner-server/roadrunner/v2/internal/cli/reset"
"github.com/roadrunner-server/roadrunner/v2/internal/cli/serve"
"github.com/roadrunner-server/roadrunner/v2/internal/cli/stop"
@@ -129,6 +130,7 @@ func NewCommand(cmdName string) *cobra.Command { //nolint:funlen,gocognit
reset.NewCommand(cfgFile, override, silent),
serve.NewCommand(override, cfgFile, silent),
stop.NewCommand(silent, forceStop),
+ jobs.NewCommand(cfgFile, override, silent),
)
return cmd