bbgo_origin/pkg/server/asset_fs.go
2021-02-15 16:21:47 +08:00

23 lines
407 B
Go

// +build web
package server
import (
"net/http"
"github.com/gin-gonic/gin"
)
func (s *Server) assetsHandler(c *gin.Context) {
// redirect to .html page if the page exists
if pageRoutePattern.MatchString(c.Request.URL.Path) {
_, err := FS.Open(c.Request.URL.Path + ".html")
if err == nil {
c.Request.URL.Path += ".html"
}
}
fs := http.FileServer(FS)
fs.ServeHTTP(c.Writer, c.Request)
}