diff options
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -209,6 +209,6 @@ func addRecipesGet(w http.ResponseWriter, r *http.Request) { func staticGet(w http.ResponseWriter, r *http.Request, filename string) { - path := filepath.Join(config.Http.Static, filename) + path := filepath.Join(config.Static, filename) http.ServeFile(w, r, path) } |