summaryrefslogtreecommitdiff
path: root/cmd/rr/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/rr/main.go')
-rw-r--r--cmd/rr/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go
index ee6b915b..40f191c6 100644
--- a/cmd/rr/main.go
+++ b/cmd/rr/main.go
@@ -31,8 +31,8 @@ import (
"github.com/spiral/roadrunner/service/static"
// cli plugins
- _ "github.com/spiral/roadrunner/cmd/rr/http"
"github.com/spiral/roadrunner/cmd/rr/debug"
+ _ "github.com/spiral/roadrunner/cmd/rr/http"
"github.com/spf13/cobra"
)
@@ -51,7 +51,7 @@ func main() {
rr.Container.Register(static.ID, &static.Service{})
// debug mode
- rr.CLI.PersistentFlags().BoolVarP(&debugMode, "debug", "d", false, "debug mode", )
+ rr.CLI.PersistentFlags().BoolVarP(&debugMode, "debug", "d", false, "debug mode")
cobra.OnInitialize(func() {
if debugMode {
service, _ := rr.Container.Get(http.ID)