From 817f15a79f2960101644cd282703e9439aef082f Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 11 Feb 2023 12:32:36 +0100 Subject: Rename router.go to server.go This fits better because this file is the central entry point of the Ceres webserver. --- router.go | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 router.go (limited to 'router.go') diff --git a/router.go b/router.go deleted file mode 100644 index ef7397d..0000000 --- a/router.go +++ /dev/null @@ -1,26 +0,0 @@ - -package main - -import ( - "log" - "net/http" -) - -func setupRoutes(config HttpConfig, 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)) -} - -func runServer(config HttpConfig, db *Database) { - - setupRoutes(config, db) - address := config.Host + ":" + config.Port - log.Println("Binding to 'http://" + address) - log.Fatal(http.ListenAndServe(address, nil)) -} -- cgit v1.2.3-70-g09d2