learn-go/snippetbox/cmd/web/routes.go

21 lines
436 B
Go

package main
import (
"net/http"
)
// routes ...
func (app *application) routes() *http.ServeMux {
mux := http.NewServeMux()
// setup server for static files
fileServer := http.FileServer(http.Dir("./ui/static"))
mux.Handle("/static/", http.StripPrefix("/static", fileServer))
mux.HandleFunc("/", app.home)
mux.HandleFunc("/snippet/view", app.snippetView)
mux.HandleFunc("/snippet/create", app.snippetCreate)
return mux
}