diff options
author | Wolfy-J <[email protected]> | 2018-07-08 21:01:40 -0700 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-07-08 21:01:40 -0700 |
commit | ef38a99429c9916137ecd5953703a694bfc1c569 (patch) | |
tree | af6c127dbd3d1cd63a30fb9082f7b9ef236da844 /service/http | |
parent | a180d5e1128f735976497dff69c8c3a1061c42c7 (diff) |
go fmt
Diffstat (limited to 'service/http')
-rw-r--r-- | service/http/config.go | 2 | ||||
-rw-r--r-- | service/http/request.go | 4 | ||||
-rw-r--r-- | service/http/service.go | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/service/http/config.go b/service/http/config.go index ebdd0343..ba303aae 100644 --- a/service/http/config.go +++ b/service/http/config.go @@ -3,8 +3,8 @@ package http import ( "errors" "github.com/spiral/roadrunner" - "strings" "github.com/spiral/roadrunner/service" + "strings" "time" ) diff --git a/service/http/request.go b/service/http/request.go index 08e2a03e..6d5cc126 100644 --- a/service/http/request.go +++ b/service/http/request.go @@ -4,12 +4,12 @@ import ( "encoding/json" "fmt" "github.com/spiral/roadrunner" + "github.com/spiral/roadrunner/service/http/attributes" "io/ioutil" + "net" "net/http" "net/url" "strings" - "github.com/spiral/roadrunner/service/http/attributes" - "net" ) const ( diff --git a/service/http/service.go b/service/http/service.go index 30289e3c..f7fdf2ab 100644 --- a/service/http/service.go +++ b/service/http/service.go @@ -3,11 +3,11 @@ package http import ( "context" "github.com/spiral/roadrunner" + "github.com/spiral/roadrunner/service/http/attributes" "github.com/spiral/roadrunner/service/rpc" "net/http" "sync" "sync/atomic" - "github.com/spiral/roadrunner/service/http/attributes" ) // ID contains default svc name. |