static files embedded now #13

Manually merged
sneak merged 5 commits from static into master 2020-10-29 13:53:24 +00:00
2 changed files with 1 additions and 15 deletions
Showing only changes of commit 52ce35e8c3 - Show all commits

View File

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

View File

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