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 /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 'router.go')
-rw-r--r-- | router.go | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/router.go b/router.go new file mode 100644 index 0000000..6985780 --- /dev/null +++ b/router.go @@ -0,0 +1,27 @@ + +package main + +import ( + "log" + "net/http" +) + +func RunServer(config HttpConfig, db *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)) +} |