diff options
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) + } } |