package controller import ( "github.com/gin-gonic/gin" "icloudapp.cn/tools/entity" ) func Index(c *gin.Context) { s := make(map[string]interface{}) s["msg"] = "success" entity.ResponseSuccess(c, entity.EmptyBodyObject()) }