summaryrefslogtreecommitdiff
path: root/cmd/rr/main.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-14 22:56:19 +0300
committerWolfy-J <[email protected]>2018-06-14 22:56:19 +0300
commit082c329d9dc84453a02693119d954f60a4792b11 (patch)
treea2e2279576c84a157c278869ee84d9f8f42b7c20 /cmd/rr/main.go
parent5fef5b06e6261bc7c133380ef8b5bc8e63ac9fbe (diff)
fmt
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)