mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
576 B
28 lines
576 B
//go:build embed
|
|
// +build embed
|
|
|
|
package servants
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rocboss/paopao-ce/web"
|
|
)
|
|
|
|
// registerStatick register static assets route
|
|
func registerStatick(e *gin.Engine) {
|
|
routeStatic(e, "/", "/index.html", "/favicon.ico", "/assets/*filepath")
|
|
}
|
|
|
|
func routeStatic(e *gin.Engine, paths ...string) {
|
|
staticHandler := http.FileServer(web.NewFileSystem())
|
|
handler := func(c *gin.Context) {
|
|
staticHandler.ServeHTTP(c.Writer, c.Request)
|
|
}
|
|
for _, path := range paths {
|
|
e.GET(path, handler)
|
|
e.HEAD(path, handler)
|
|
}
|
|
}
|