summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
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)
+ }
}