diff options
author | xengineering <me@xengineering.eu> | 2023-02-08 20:53:20 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-08 21:01:27 +0100 |
commit | f9a5140071703faf0c7515a05f52e69fdc1f11ba (patch) | |
tree | ee073f3c7fc1a6bbda1eee6e3bec076e73363740 /web/router.go | |
parent | 9005de11ef8b7cf32cc8503e8b5f134eca47b4fb (diff) | |
download | ceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.tar ceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.tar.zst ceres-f9a5140071703faf0c7515a05f52e69fdc1f11ba.zip |
Move all sources to package main
This project is not so big that it needs multiple packages.
Diffstat (limited to 'web/router.go')
-rw-r--r-- | web/router.go | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/web/router.go b/web/router.go deleted file mode 100644 index ec67399..0000000 --- a/web/router.go +++ /dev/null @@ -1,29 +0,0 @@ - -package web - -import ( - "log" - "net/http" - - "xengineering.eu/ceres/utils" -) - -func RunServer(config utils.HttpConfig, db *utils.Database) { - - http.HandleFunc("/", index(db, config.Templates)) - - http.HandleFunc("/recipe", recipe(db, config.Templates)) - - http.HandleFunc("/recipe/edit", recipe_edit(db, config.Templates)) - - http.HandleFunc("/recipe/image", image(config.Storage)) - - http.HandleFunc("/add_recipes", add_recipes(db, config.Storage, config.Static)) - - http.HandleFunc("/static/style.css", static("style.css", config.Static)) - http.HandleFunc("/favicon.ico", static("favicon.ico", config.Static)) - - address := config.Host + ":" + config.Port - log.Println("Binding to 'http://" + address) - log.Fatal(http.ListenAndServe(address, nil)) -} |