summaryrefslogtreecommitdiff
path: root/storage.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-11 18:31:50 +0100
committerxengineering <me@xengineering.eu>2023-02-11 18:31:50 +0100
commita288826b924266ff4577003103ef49cf6bb5cc3c (patch)
treec20106aee80e78e7f3873a5f149b7bf9c955e1c0 /storage.go
parentced1e404bd762abb114321334a3812805dee7059 (diff)
downloadceres-a288826b924266ff4577003103ef49cf6bb5cc3c.tar
ceres-a288826b924266ff4577003103ef49cf6bb5cc3c.tar.zst
ceres-a288826b924266ff4577003103ef49cf6bb5cc3c.zip
Remove most function-inline comments
Docstrings for functions are a good thing. But the inside of a function should be written in a way that is self-explaining. Thus inline comments are just extra stuff to maintain and read.
Diffstat (limited to 'storage.go')
-rw-r--r--storage.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/storage.go b/storage.go
index e063d6b..dd6feb2 100644
--- a/storage.go
+++ b/storage.go
@@ -9,7 +9,6 @@ import (
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)
if err != nil {
@@ -20,7 +19,6 @@ func ServeStorage(w http.ResponseWriter, r *http.Request, path string) {
// TODO check if path is still in storage folder
- // serve the file if nothing has been wrong
http.ServeFile(w, r, path)
}