mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
feat: add artist page
This commit is contained in:
parent
0381b6e4ae
commit
840d23e931
11 changed files with 264 additions and 21 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue