diff options
author | Wolfy-J <[email protected]> | 2018-09-30 19:00:07 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-09-30 19:00:07 +0300 |
commit | 89829597d7da2af4d4a6bc394746b244a3e43a1c (patch) | |
tree | b1b8d4af813b5f6ea9cc57bc64807a77f8cc5753 /service/http/service.go | |
parent | c7b6b81c044305a3d65d1d53eb7f7bc172b37bf2 (diff) |
new go mod
Diffstat (limited to 'service/http/service.go')
-rw-r--r-- | service/http/service.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/service/http/service.go b/service/http/service.go index bea71d25..1f999b8b 100644 --- a/service/http/service.go +++ b/service/http/service.go @@ -2,17 +2,17 @@ package http import ( "context" + "fmt" "github.com/spiral/roadrunner" "github.com/spiral/roadrunner/service/env" "github.com/spiral/roadrunner/service/http/attributes" "github.com/spiral/roadrunner/service/rpc" + "golang.org/x/net/http2" "net/http" + "net/url" + "strings" "sync" "sync/atomic" - "golang.org/x/net/http2" - "strings" - "fmt" - "net/url" ) const ( |