mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 05:17:36 +03:00
perf: tackle lighthouse issues
This commit is contained in:
parent
7e40892b1d
commit
59929bb891
7 changed files with 28 additions and 9 deletions
|
@ -5,10 +5,10 @@ import (
|
|||
"net/http"
|
||||
|
||||
"github.com/a-h/templ"
|
||||
gorillaHandlers "github.com/gorilla/handlers"
|
||||
"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 {
|
||||
|
@ -18,6 +18,9 @@ func New(logger *logrus.Logger) *mux.Router {
|
|||
r.Use(gorillaHandlers.CompressHandler)
|
||||
|
||||
r.Handle("/", templ.Handler(views.HomePage()))
|
||||
r.HandleFunc("/robots.txt", func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Write([]byte("User-agent: *\nDisallow: /\n"))
|
||||
})
|
||||
r.HandleFunc("/albums/{artist}/{albumName}", album(logger)).Methods("GET")
|
||||
r.HandleFunc("/images/{filename}.{ext}", imageProxy(logger)).Methods("GET")
|
||||
r.HandleFunc("/search", search(logger)).Methods("GET")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue