mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 05:17:36 +03:00
feat: add compress handler
This commit is contained in:
parent
1db6e0adbb
commit
7e40892b1d
3 changed files with 8 additions and 15 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue