Slide 38
Slide 38 text
Copyright (C) 2020 Yahoo Japan Corporation. All Rights Reserved.
38
func main() {
// 1-1. マルチプレクサにハンドラを登録
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, fmt.Sprintf("http://localhost:%d/index", config.Port), http.StatusMovedPermanently)
})
mux.HandleFunc("/index", index)
mux.HandleFunc("/callback", callback)
...
practice01/server.go