diff options
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)) |