From 06a09ecebb3e7631044963e374671edf15d61213 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 11 Feb 2023 13:51:21 +0100 Subject: Make multiplexer regular handlers Multiplexer functions used to return closures which are able to handle HTTP requests for historc reasons. Now the multiplexers can be regular HTTP handlers which is simpler. --- server.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'server.go') diff --git a/server.go b/server.go index d70373b..f565636 100644 --- a/server.go +++ b/server.go @@ -8,13 +8,13 @@ import ( func setupRoutes() { - http.HandleFunc("/", indexMux()) - http.HandleFunc("/recipe", recipeMux()) - http.HandleFunc("/recipe/edit", recipeEditMux()) - http.HandleFunc("/recipe/image", recipeImageMux()) - http.HandleFunc("/add_recipes", addRecipesMux()) - http.HandleFunc("/static/style.css", staticStyleMux()) - http.HandleFunc("/favicon.ico", faviconMux()) + http.HandleFunc("/", indexMux) + http.HandleFunc("/recipe", recipeMux) + http.HandleFunc("/recipe/edit", recipeEditMux) + http.HandleFunc("/recipe/image", recipeImageMux) + http.HandleFunc("/add_recipes", addRecipesMux) + http.HandleFunc("/static/style.css", staticStyleMux) + http.HandleFunc("/favicon.ico", faviconMux) } func runServer() { -- cgit v1.2.3-70-g09d2