diff options
author | xengineering <me@xengineering.eu> | 2023-02-11 13:02:41 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-11 13:02:41 +0100 |
commit | 7e517ada827abc2658bb07347bc656c10860e091 (patch) | |
tree | 2e7274381f5fe9b351407868efb36232e6a95b1d /server.go | |
parent | 8e166f100697c5a497aa68349c20a6cb88b5503f (diff) | |
download | ceres-7e517ada827abc2658bb07347bc656c10860e091.tar ceres-7e517ada827abc2658bb07347bc656c10860e091.tar.zst ceres-7e517ada827abc2658bb07347bc656c10860e091.zip |
Switch webserver to global config struct
Diffstat (limited to 'server.go')
-rw-r--r-- | server.go | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -6,21 +6,21 @@ import ( "net/http" ) -func setupRoutes(config HttpConfig, db *Database) { +func setupRoutes(db *Database) { - http.HandleFunc("/", indexMux(db, config.Templates)) - http.HandleFunc("/recipe", recipeMux(db, config.Templates)) - http.HandleFunc("/recipe/edit", recipeEditMux(db, config.Templates)) - http.HandleFunc("/recipe/image", recipeImageMux(config.Storage)) - http.HandleFunc("/add_recipes", addRecipesMux(db, config.Storage, config.Static)) - http.HandleFunc("/static/style.css", staticStyleMux("style.css", config.Static)) - http.HandleFunc("/favicon.ico", faviconMux("favicon.ico", config.Static)) + http.HandleFunc("/", indexMux(db)) + http.HandleFunc("/recipe", recipeMux(db)) + http.HandleFunc("/recipe/edit", recipeEditMux(db)) + http.HandleFunc("/recipe/image", recipeImageMux()) + http.HandleFunc("/add_recipes", addRecipesMux(db)) + http.HandleFunc("/static/style.css", staticStyleMux()) + http.HandleFunc("/favicon.ico", faviconMux()) } -func runServer(config HttpConfig, db *Database) { +func runServer(db *Database) { - setupRoutes(config, db) - address := config.Host + ":" + config.Port + setupRoutes(db) + address := config.Http.Host + ":" + config.Http.Port log.Println("Binding to 'http://" + address) log.Fatal(http.ListenAndServe(address, nil)) } |