feat: add artist page

This commit is contained in:
qvalentin 2024-06-08 15:16:13 +02:00
parent 0381b6e4ae
commit 840d23e931
11 changed files with 264 additions and 21 deletions

View file

@ -22,6 +22,7 @@ func New(logger *utils.Logger, staticFiles static) *mux.Router {
w.Write([]byte("User-agent: *\nDisallow: /\n"))
})
r.HandleFunc("/albums/{artist}/{albumName}", album(logger)).Methods("GET")
r.HandleFunc("/artists/{artist}", artist(logger)).Methods("GET")
r.HandleFunc("/images/{filename}.{ext}", imageProxy(logger)).Methods("GET")
r.HandleFunc("/search", search(logger)).Methods("GET")
r.HandleFunc("/{annotation-id}/{artist-song}/{verse}/annotations", annotations(logger)).Methods("GET")