You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
221 B
Go

package router
import (
"github.com/gin-gonic/gin"
)
func h5RouteInit(r *gin.Engine) {
r.StaticFile("/order", "./static/index.html")
r.Static("/assets", "./static/assets")
r.Static("/uploads", "./static/uploads")
}