feat: add compress handler

This commit is contained in:
rramiachraf 2024-05-01 21:06:03 +01:00
parent 1db6e0adbb
commit 7e40892b1d
3 changed files with 8 additions and 15 deletions

View file

@ -8,12 +8,14 @@ import (
"github.com/gorilla/mux"
"github.com/rramiachraf/dumb/views"
"github.com/sirupsen/logrus"
gorillaHandlers "github.com/gorilla/handlers"
)
func New(logger *logrus.Logger) *mux.Router {
r := mux.NewRouter()
r.Use(mustHeaders)
r.Use(gorillaHandlers.CompressHandler)
r.Handle("/", templ.Handler(views.HomePage()))
r.HandleFunc("/albums/{artist}/{albumName}", album(logger)).Methods("GET")