From f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1 Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 25 Apr 2023 17:39:48 +0200 Subject: Introduce routing table This removes a lot of repetative code. --- handler.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'handler.go') 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) + } } -- cgit v1.2.3-70-g09d2