diff options
author | xengineering <me@xengineering.eu> | 2023-02-11 13:46:45 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-11 13:46:45 +0100 |
commit | 6b52b4bbc81c64b29daff043b83e21c38f332052 (patch) | |
tree | 3a5d41f75228fe6ece3df5c109365d54b0ba6d04 /server.go | |
parent | 312c59564700da719dbafad11c2d9f647b46d912 (diff) | |
download | ceres-6b52b4bbc81c64b29daff043b83e21c38f332052.tar ceres-6b52b4bbc81c64b29daff043b83e21c38f332052.tar.zst ceres-6b52b4bbc81c64b29daff043b83e21c38f332052.zip |
Switch to global database pointer
Passing the database pointer around is a lot of text and has no benefit.
Diffstat (limited to 'server.go')
-rw-r--r-- | server.go | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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)) |