guestbook/cmd/web/routes.go

13 lines
174 B
Go
Raw Normal View History

2024-10-16 04:34:57 +00:00
package main
import (
"net/http"
)
func (app *application) routes() *http.ServeMux {
mux := http.NewServeMux()
mux.HandleFunc("/", app.home);
return mux
}