diff options
author | Wolfy-J <[email protected]> | 2018-07-26 16:56:25 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-07-26 16:56:25 +0300 |
commit | 234995f297c4067f4dfdba305f3b16a90143cf12 (patch) | |
tree | 48fca37b44593cfa969e3d55ba1e513576c25647 /cmd | |
parent | 0b170a3094aaa5f353550806ff409d67642225b9 (diff) |
handle env errors
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/cmd/root.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/rr/cmd/root.go b/cmd/rr/cmd/root.go index 79f43398..595395c0 100644 --- a/cmd/rr/cmd/root.go +++ b/cmd/rr/cmd/root.go @@ -24,11 +24,11 @@ import ( "github.com/sirupsen/logrus" "github.com/spf13/cobra" "github.com/spf13/viper" + "github.com/spiral/roadrunner/cmd/rr/debug" "github.com/spiral/roadrunner/cmd/rr/utils" "github.com/spiral/roadrunner/service" - "os" "github.com/spiral/roadrunner/service/http" - "github.com/spiral/roadrunner/cmd/rr/debug" + "os" ) // Service bus for all the commands. |