package projects import "github.com/go-chi/chi/v5" func Routes(r chi.Router) { r.Get("/", Index) r.Get("/select", Select) }