package hdl import ( "applet/app/store/svc" "github.com/gin-gonic/gin" ) func ProjectList(c *gin.Context) { svc.ProjectList(c) } func ProjectSave(c *gin.Context) { svc.ProjectSave(c) } func ProjectDel(c *gin.Context) { svc.ProjectDel(c) } func AllProjectList(c *gin.Context) { svc.AllProjectList(c) } func AllProjectCate(c *gin.Context) { svc.AllProjectCate(c) }