summaryrefslogtreecommitdiff
path: root/http/config.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-03 13:00:58 +0300
committerWolfy-J <[email protected]>2018-06-03 13:00:58 +0300
commit00eaa539e333184bdfb73fe3347bc5358de8a551 (patch)
treee323ff9acd8ee769aedcc26e036664dafa6031d0 /http/config.go
parentd1290a636e70d1797261c189285cc6fc6310a0be (diff)
go fmt
Diffstat (limited to 'http/config.go')
-rw-r--r--http/config.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/http/config.go b/http/config.go
index fe5fab36..2a64dbab 100644
--- a/http/config.go
+++ b/http/config.go
@@ -1,12 +1,12 @@
package http
import (
- "strings"
- "path"
+ "fmt"
"github.com/spiral/roadrunner/service"
- "os"
"github.com/spiral/roadrunner/utils"
- "fmt"
+ "os"
+ "path"
+ "strings"
)
// Configures RoadRunner HTTP server.
@@ -46,7 +46,7 @@ type serviceConfig struct {
Host string
Port string
MaxRequest string
- Static struct {
+ Static struct {
Serve bool
Root string
}