summaryrefslogtreecommitdiff
path: root/server.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-11 13:46:45 +0100
committerxengineering <me@xengineering.eu>2023-02-11 13:46:45 +0100
commit6b52b4bbc81c64b29daff043b83e21c38f332052 (patch)
tree3a5d41f75228fe6ece3df5c109365d54b0ba6d04 /server.go
parent312c59564700da719dbafad11c2d9f647b46d912 (diff)
downloadceres-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.go14
1 files changed, 7 insertions, 7 deletions
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))