diff options
author | Wolfy-J <[email protected]> | 2018-06-14 22:56:19 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-14 22:56:19 +0300 |
commit | 082c329d9dc84453a02693119d954f60a4792b11 (patch) | |
tree | a2e2279576c84a157c278869ee84d9f8f42b7c20 /cmd/rr/main.go | |
parent | 5fef5b06e6261bc7c133380ef8b5bc8e63ac9fbe (diff) |
fmt
Diffstat (limited to 'cmd/rr/main.go')
-rw-r--r-- | cmd/rr/main.go | 4 |
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) |