summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-25 17:39:48 +0200
committerxengineering <me@xengineering.eu>2023-04-28 10:44:29 +0200
commitf456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1 (patch)
tree6803e98d6370abf887301adaf26438000fa7c292 /handler.go
parentfff3d70ba494214e434083c9d0e32f3def32138f (diff)
downloadceres-f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1.tar
ceres-f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1.tar.zst
ceres-f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1.zip
Introduce routing table
This removes a lot of repetative code.
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/handler.go b/handler.go
index 98bcc2d..32a9d4d 100644
--- a/handler.go
+++ b/handler.go
@@ -181,8 +181,10 @@ func addRecipesGet(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, redirect, 303)
}
-func staticGet(w http.ResponseWriter, r *http.Request, filename string) {
+func staticGet(filename string) (func(w http.ResponseWriter, r *http.Request)) {
- path := filepath.Join(config.Static, filename)
- http.ServeFile(w, r, path)
+ return func(w http.ResponseWriter, r *http.Request) {
+ path := filepath.Join(config.Static, filename)
+ http.ServeFile(w, r, path)
+ }
}