package hdl import ( "applet/app/store/svc" "github.com/gin-gonic/gin" ) func Index(c *gin.Context) { svc.Index(c) } func StoreIndex(c *gin.Context) { svc.StoreIndex(c) } func UserInfo(c *gin.Context) { svc.UserInfo(c) }