From 6b52b4bbc81c64b29daff043b83e21c38f332052 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 11 Feb 2023 13:46:45 +0100 Subject: Switch to global database pointer Passing the database pointer around is a lot of text and has no benefit. --- server.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'server.go') diff --git a/server.go b/server.go index f7f67f4..d70373b 100644 --- a/server.go +++ b/server.go @@ -6,20 +6,20 @@ import ( "net/http" ) -func setupRoutes(db *Database) { +func setupRoutes() { - http.HandleFunc("/", indexMux(db)) - http.HandleFunc("/recipe", recipeMux(db)) - http.HandleFunc("/recipe/edit", recipeEditMux(db)) + http.HandleFunc("/", indexMux()) + http.HandleFunc("/recipe", recipeMux()) + http.HandleFunc("/recipe/edit", recipeEditMux()) http.HandleFunc("/recipe/image", recipeImageMux()) - http.HandleFunc("/add_recipes", addRecipesMux(db)) + http.HandleFunc("/add_recipes", addRecipesMux()) http.HandleFunc("/static/style.css", staticStyleMux()) http.HandleFunc("/favicon.ico", faviconMux()) } -func runServer(db *Database) { +func runServer() { - setupRoutes(db) + setupRoutes() address := config.Http.Host + ":" + config.Http.Port log.Println("Binding to 'http://" + address) log.Fatal(http.ListenAndServe(address, nil)) -- cgit v1.2.3-70-g09d2