From ced1e404bd762abb114321334a3812805dee7059 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 11 Feb 2023 18:19:30 +0100 Subject: Apply go fmt *.go This auto-applies the recommended Go codestyle. --- storage.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'storage.go') 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) -- cgit v1.2.3-70-g09d2