blob: 4a685f20ed82415caa05af239f0a749b7ef9244a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package main
import (
"log"
"net/http"
)
func setupRoutes() {
http.HandleFunc("/", indexMux)
http.HandleFunc("/recipe", recipeMux)
http.HandleFunc("/recipe/edit", recipeEditMux)
http.HandleFunc("/recipe/confirm-deletion", recipeConfirmDeletionMux)
http.HandleFunc("/add_recipes", addRecipesMux)
http.HandleFunc("/static/style.css", staticStyleMux)
http.HandleFunc("/favicon.ico", faviconMux)
}
func runServer() {
setupRoutes()
address := config.Http.Host + ":" + config.Http.Port
log.Println("Serving content at 'http://" + address + "'.")
log.Fatal(http.ListenAndServe(address, nil))
}
|