diff options
Diffstat (limited to 'http/config.go')
-rw-r--r-- | http/config.go | 10 |
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 } |