What does it mean that gin.H, is everywhere in the gin framework?

What does it mean that gin.H, is everywhere in the

gin framework?

clipboard.png

Mar.08,2022

read Source , gin.H is actually Map [string] interface {}

c.JSON(http.StatusOK, gin.H{
            "status":  gin.H{
                "code": http.StatusOK,
                "status":      "",
            },
            "message": message
        })
Menu