diff options
author | xengineering <me@xengineering.eu> | 2023-04-25 17:39:48 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-28 10:44:29 +0200 |
commit | f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1 (patch) | |
tree | 6803e98d6370abf887301adaf26438000fa7c292 /handler.go | |
parent | fff3d70ba494214e434083c9d0e32f3def32138f (diff) | |
download | ceres-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.go | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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) + } } |