package v1
import "github.com/gin-gonic/gin"
func InitRouters(prefix string, e *gin.Engine) {
g := e.Group(prefix)
g.GET("", WxCheckSignature)
}