simplify static file handler
continuous-integration/drone/push Build is failing 詳細
continuous-integration/drone/pr Build is failing 詳細

このコミットが含まれているのは:
Jeffrey Paul 2020-10-28 17:51:57 -07:00
コミット 52ce35e8c3
2個のファイルの変更1行の追加15行の削除

ファイルの表示

@ -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)
}
}

ファイルの表示

@ -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())