summaryrefslogtreecommitdiff
path: root/storage.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-11 18:19:30 +0100
committerxengineering <me@xengineering.eu>2023-02-11 18:19:30 +0100
commitced1e404bd762abb114321334a3812805dee7059 (patch)
tree27f6ac74a2de4bd020af17408cd19d9e0265a501 /storage.go
parent05e3b3397c888807719d70af4ed3c73397d9374f (diff)
downloadceres-ced1e404bd762abb114321334a3812805dee7059.tar
ceres-ced1e404bd762abb114321334a3812805dee7059.tar.zst
ceres-ced1e404bd762abb114321334a3812805dee7059.zip
Apply go fmt *.go
This auto-applies the recommended Go codestyle.
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)