udemy-go-web-2/cmd/web/routes.go

13 lines
153 B
Go
Raw Normal View History

2024-08-03 10:17:39 +00:00
package main
import (
"net/http"
"github.com/go-chi/chi/v5"
)
func (app *application) routes() http.Handler {
mux := chi.NewRouter()
return mux
}