summaryrefslogtreecommitdiff
path: root/cmd/rr
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-07-08 21:01:40 -0700
committerWolfy-J <[email protected]>2018-07-08 21:01:40 -0700
commitef38a99429c9916137ecd5953703a694bfc1c569 (patch)
treeaf6c127dbd3d1cd63a30fb9082f7b9ef236da844 /cmd/rr
parenta180d5e1128f735976497dff69c8c3a1061c42c7 (diff)
go fmt
Diffstat (limited to 'cmd/rr')
-rw-r--r--cmd/rr/debug/debugger.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/rr/debug/debugger.go b/cmd/rr/debug/debugger.go
index fdf3c1be..8ec116c2 100644
--- a/cmd/rr/debug/debugger.go
+++ b/cmd/rr/debug/debugger.go
@@ -1,13 +1,13 @@
package debug
import (
+ "fmt"
"github.com/sirupsen/logrus"
"github.com/spiral/roadrunner"
"github.com/spiral/roadrunner/cmd/rr/utils"
rrhttp "github.com/spiral/roadrunner/service/http"
- "strings"
- "fmt"
"net/http"
+ "strings"
)
// Listener creates new debug listener.
@@ -114,4 +114,4 @@ func uri(r *http.Request) string {
}
return fmt.Sprintf("http://%s%s", r.Host, r.URL.String())
-} \ No newline at end of file
+}