feat: add instances handler

This commit is contained in:
rramiachraf 2024-03-06 12:01:04 +01:00
parent 53462a9412
commit 6d6ffa16ff
6 changed files with 73 additions and 5 deletions

View file

@ -29,6 +29,7 @@ func main() {
r.HandleFunc("/images/{filename}.{ext}", handlers.ImageProxy(logger)).Methods("GET")
r.HandleFunc("/search", handlers.Search(logger)).Methods("GET")
r.HandleFunc("/{id}/{artist-song}/{verse}/annotations", handlers.Annotations(logger)).Methods("GET")
r.HandleFunc("/instances.json", handlers.Instances(logger)).Methods("GET")
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
r.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNotFound)