package index import ( "html/template" "github.com/go-chi/chi" ) func GUIRoutes(s Service, t template.Template) *chi.Mux { router := chi.NewRouter() router.Get("/", IndexGUIHandler(s, t)) return router }