blob: f7f67f412627ee28faeb87634358039c172dbe69 (
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
26
|
package main
import (
"log"
"net/http"
)
func setupRoutes(db *Database) {
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(db *Database) {
setupRoutes(db)
address := config.Http.Host + ":" + config.Http.Port
log.Println("Binding to 'http://" + address)
log.Fatal(http.ListenAndServe(address, nil))
}
|