summaryrefslogtreecommitdiff
path: root/storage.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage.go')
-rw-r--r--storage.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/storage.go b/storage.go
index 10ec915..e063d6b 100644
--- a/storage.go
+++ b/storage.go
@@ -1,10 +1,9 @@
-
package main
import (
+ "io/ioutil"
"log"
"net/http"
- "io/ioutil"
"path/filepath"
)
@@ -12,7 +11,7 @@ func ServeStorage(w http.ResponseWriter, r *http.Request, path string) {
// generate absolute, cleaned path of ressource
path = filepath.Join(config.Http.Storage, path)
- path,err := filepath.Abs(path)
+ path, err := filepath.Abs(path)
if err != nil {
log.Print(err)
http.Error(w, http.StatusText(400), 400)