simplify static file handler
continuous-integration/drone/push Build is failing Szczegóły
continuous-integration/drone/pr Build is failing Szczegóły

This commit is contained in:
Jeffrey Paul 2020-10-28 17:51:57 -07:00
rodzic 7cc2628b05
commit 52ce35e8c3
2 zmienionych plików z 1 dodań i 15 usunięć

Wyświetl plik

@ -1,14 +0,0 @@
package httpserver
import (
"net/http"
)
func (s *server) staticHandler() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
// sadly, the route prefix needs to be reproduced here, so it knows
// how to convert the incoming request path to the appropriate
// embedded file path
http.StripPrefix("/s", http.FileServer(s.staticFiles.HTTPBox())).ServeHTTP(w, r)
}
}

Wyświetl plik

@ -58,7 +58,7 @@ func (s *server) routes() {
s.router.Get("/", s.handleIndex())
s.router.Mount("/s", s.staticHandler())
s.router.Mount("/s", http.StripPrefix("/s", http.FileServer(s.staticFiles.HTTPBox())))
s.router.Route("/api/v1", func(r chi.Router) {
r.Get("/now", s.handleNow())